.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-dots {
    display: flex;
    margin: 0 8px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 2px;
}

.dot-blue {
    background-color: #4285F4;
}

.dot-red {
    background-color: #EA4335;
}

.dot-yellow {
    background-color: #FBBC05;
}

.dot-green {
    background-color: #34A853;
}


.hamburger {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

.hamburger div {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    /* background:linear-gradient(to right, #6e8efb, #a777e3); */
    background: #331a5c;
    color: white;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.user-info {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #331a5c;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    margin-right: 15px;
}


.user-details h3 {
    margin-bottom: 5px;
    color: #333;
}

.user-details span {
    color: #888;
    font-size: 14px;
}

.menu-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.menu-items::-webkit-scrollbar {
    width: 5px;
}

.menu-items::-webkit-scrollbar-thumb {
    background: #331a5c;
    border-radius: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    background: #331a5c;
    border-left: 4px solid #331a5c57;
    color: white;
}

.menu-item.active {
    background: #f4effd;
    border-left: 4px solid #331a5c;
    color: #331a5c;
}

.menu-item i {
    margin-right: 15px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.menu-item span {
    font-size: 16px;
    font-weight: 500;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 65px;
    background: #331a5c;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(49, 22, 99, 0.4);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(49, 22, 99, 0.4);
}

.logout-btn i {
    margin-right: 8px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.content {
    padding: 30px;
    text-align: center;
}

h1 {
    color: #6e8efb;
    margin-bottom: 20px;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.main-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}

.main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.5);
}

@media (max-width: 400px) {
    .sidebar {
        width: 280px;
        left: -280px;
    }
}