/* --- БАЗОВЫЕ СТИЛИ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* СТИЛИ АВТОРИЗАЦИИ */
body.auth-page {
    background-color: #f0f2f5;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;    /* Центр по вертикали */
    justify-content: center; /* Центр по горизонтали */
}

.auth-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    /* Убираем любые внешние отступы, которые могут сдвинуть блок */
    margin: 0; 
}

.logo-wrapper { 
    display: flex; 
    justify-content: center; 
    margin-bottom: 25px; 
}

.logo-placeholder {
    width: 90px; 
    height: 90px; 
    background: #007bff; 
    border-radius: 24px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

.logo-placeholder img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.input-group { margin-bottom: 15px; }

input {
    width: 100%; 
    padding: 14px 18px; 
    border: 1.5px solid #eee;
    border-radius: 12px; 
    font-size: 16px; 
    outline: none; 
    transition: all 0.3s;
    background: #fdfdfd;
}

input:focus { 
    border-color: #007bff; 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.btn-main {
    width: 100%; 
    padding: 14px; 
    background-color: #007bff; 
    border: none;
    border-radius: 12px; 
    color: white; 
    font-size: 16px; 
    font-weight: 600;
    cursor: pointer; 
    margin-top: 10px;
    transition: 0.3s ease;
}

.btn-main:hover { 
    background-color: #0056b3; 
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-main:active {
    transform: translateY(0);
}

/* Стили Splash Screen */
/* Экран */
.splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.splash-screen.hidden {
    opacity: 0;
    transform: scale(1.1); /* Эффект приближения при исчезновении */
    visibility: hidden;
}

/* Контейнер логотипа с анимацией "прыжка" */
.splash-logo-container {
    animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.splash-logo {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    /* Эффект легкого покачивания */
    animation: logoShake 3s ease-in-out infinite 1s; 
}

.splash-logo img { width: 100%; height: 100%; object-fit: cover; }

/* Контейнер текста (выезжает из-под лого) */
.splash-text-container {
    margin-top: 20px;
    overflow: hidden; /* Чтобы текст "выползал" */
}

.splash-title {
    font-size: 32px;
    font-weight: 850;
    color: #1a1a1a;
    margin: 0;
    opacity: 0;
    transform: translateY(-50px); /* Прячем за логотипом */
    animation: textSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

.splash-subtitle {
    font-size: 14px;
    background: linear-gradient(90deg, #007bff, #764ba2, #007bff);
    background-size: 200% auto;
    -webkit-background-clip: text; /* Обрезаем фон по форме текста */
    -webkit-text-fill-color: transparent; /* Делаем текст прозрачным, чтобы видеть фон */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s, gradientMove 3s linear infinite;
}

/* Анимация движения градиента */
@keyframes gradientMove {
    to { background-position: 200% center; }
}


/* АНИМАЦИИ */

/* 1. Появление логотипа (увеличение с пружиной) */
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* 2. Выезд текста */
@keyframes textSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Легкое покачивание логотипа (живое) */
@keyframes logoShake {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(2deg) translateY(-5px); }
    75% { transform: rotate(-2deg) translateY(5px); }
}

/* 4. Плавное проявление подписи */
@keyframes fadeIn {
    to { opacity: 1; }
}


/* --- СТИЛИ ЧАТА (Новый дизайн) --- */
body.app-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.glass-container {
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Сайдбар */
.app-sidebar {
    width: 320px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
}

.sidebar-top { padding: 20px; }

/* Компактный профиль с кнопкой "+" */
.profile-brief {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.add-chat-btn {
    margin-left: auto; /* Прижимает плюс к правому краю */
    background: #764ba2;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Стильные вкладки с подчеркиванием */
.sidebar-nav {
    display: flex;
    justify-content: space-between;
    margin-top: -30px;
    border-bottom: 1px solid #eee;
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    cursor: pointer;
    color: #888;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-item.active {
    color: #764ba2;
    border-bottom: 2px solid #764ba2;
}

/* Выпадающее меню */
.action-menu {
    position: absolute;
    top: 45px;
    right: 0px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 8px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.action-menu button {
    background: none;
    border: none;
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
}

.action-menu button:hover { background: #f1f3f6; }


.user-avatar-main {
    width: 45px; height: 45px; background: #764ba2; color: white;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-weight: bold; margin-bottom: 10px;
}
.search-wrapper {
    background: #f1f3f6; padding: 8px 12px; border-radius: 10px;
    display: flex; align-items: center; gap: 8px;
}
.search-wrapper input { border: none; background: none; font-size: 14px; padding: 0; }

.sidebar-nav { display: flex; gap: 15px; padding: 10px 20px; border-bottom: 1px solid #eee; }
.nav-item { font-size: 13px; cursor: pointer; color: #666; font-weight: 600; }
.nav-item.active { color: #764ba2; }

.sidebar-actions {
    display: flex;
    gap: 5px;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.action-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: none;
    color: black;
    padding: 4px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.action-btn:hover { background: rgba(255,255,255,0.2); }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 1000;
}
.modal-content { background: #2c2c2c; padding: 20px; border-radius: 10px; width: 300px; }
.modal-content input { width: 100%; padding: 10px; margin: 15px 0; background: #1a1a1a; border: 1px solid #444; color: white; }
.modal-buttons { display: flex; justify-content: flex-end; gap: 10px; }
/* Фоновая подложка с размытием */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px); /* Тот самый эффект стекла */
    display: none; /* Скрыто по умолчанию */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Контент модалки */
.modal-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 20px;
    font-weight: 500;
}

/* Красивое поле ввода */
.modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    outline: none;
}

.modal-content input:focus {
    border-color: #00d2ff;
}

/* Кнопки */
.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.modal-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-confirm {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}


.items-list { flex: 1; overflow-y: auto; }
.list-item {
    display: flex; align-items: center; gap: 12px; padding: 15px 20px;
    cursor: pointer; transition: 0.2s;
}
.list-item:hover { background: rgba(118, 75, 162, 0.05); }
.list-item.active { background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.item-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
.channel-icon { background: #ff7675; }
.user-icon { background: #55efc4; color: #222; font-weight: bold; }
.item-name { font-weight: 600; font-size: 14px; }
.item-last { font-size: 12px; color: #888; }

/* Окно чата */
.app-main-chat { flex: 1; display: flex; flex-direction: column; }
.main-header {
    padding: 15px 25px; background: rgba(255,255,255,0.8);
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.online-tag { font-size: 11px; color: #00b894; font-weight: 700; }

.chat-viewport { flex: 1; padding: 25px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }

.msg-group {
    display: flex;
    flex-direction: column; /* Позволяет align-self внутри работать корректно */
    width: 100%;
}

.msg-bubble {
    padding: 12px 16px; border-radius: 16px; font-size: 14px;
    max-width: 80%; line-height: 1.4; position: relative; width: fit-content;
    word-wrap: break-word;
    overflow-wrap: break-word; 
    word-break: break-word;
}

.msg-bubble .text {
    white-space: pre-wrap;    /* Сохраняет переносы строк (как в Telegram) */
    display: block;
}
.incoming .msg-bubble { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.outgoing .msg-bubble { background: #764ba2; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

.sender-name { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; color: #764ba2; }
.time-stamp { font-size: 10px; opacity: 0.6; float: right; margin-top: 0px; margin-left: 8px; }

/* Футер ввода */
.main-footer { padding: 20px; }
.input-container {
    background: #fff; padding: 6px 10px 6px 20px; border-radius: 14px;
    display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);position: relative; 
}
.input-container input { flex: 1; border: none; padding: 10px 0; font-size: 14px; }
.attach-btn, .send-btn-modern { background: none; border: none; cursor: pointer; color: #764ba2; font-size: 18px; }
.send-btn-modern { background: #764ba2; color: white; width: 38px; height: 38px; border-radius: 10px; }

/* Стили для уведомлений о новых сообщениях */
.list-item.unread-notify {
    border-left: 5px solid #00ff88 !important;
    background: rgba(0, 255, 136, 0.4) !important;
    animation: pulse-notify 2s infinite;
    }
@keyframes pulse-notify {
    0% { background: rgba(0, 255, 136, 0.1); }
    50% { background: rgba(0, 255, 136, 0.2); }
    100% { background: rgba(0, 255, 136, 0.1); }
    }
.unread-badge {
    color: #00ff88 !important;
    font-weight: bold;
    }

.emoji-trigger {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    transition: transform 0.2s;
}
.emoji-trigger:hover { transform: scale(1.2); }

.emoji-picker {
    position: absolute;
    bottom: calc(100% + 10px); /* Над инпутом */
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    z-index: 100;
}

.emoji-picker span {
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.1s;
}
.emoji-picker span:hover { transform: scale(1.3); }

/* Делаем сайдбар флекс-контейнером, чтобы футер прижался к низу */
.app-sidebar {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Список контактов забирает всё свободное место */
.items-list {
    flex: 1;
    overflow-y: auto;
}

.sidebar-footer {
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.00);
    text-align: center;
}

.version-tag {
    font-weight: bold;
    font-size: 0.8em;
    color: #764ba2; 
    margin-bottom: 4px;
}

.warning-text {
    font-size: 0.7em;
    line-height: 1.2;
    color: rgba(0, 0, 0, 1);
}

.delete-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
}

.delete-btn:hover {
    opacity: 1;
    color: #ff4d4d;
    transform: scale(1.1);
}

.danger-btn {
    background: #ff4d4d; color: white; border: none;
    padding: 8px 16px; border-radius: 6px; cursor: pointer;
}
.secondary-btn {
    background: #eee; border: none; padding: 8px 16px; border-radius: 6px; cursor: pointer;
}
.confirm-box {
    max-width: 300px; text-align: center;
    animation: modalShow 0.1s ease-out;
}
@keyframes modalShow {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.empty-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
    animation: fadeInScale 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.empty-state-visual {
    color: #764ba2;
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 1.1rem;
    color: #764ba2;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.empty-state-desc {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 6px;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.confirm-box h3 { 
    margin-top: 0; 
    color: #000000; 
    font-weight: 700; 
}

.confirm-box p { 
    color: #000000; 
    margin-bottom: 20px; 
    font-size: 1rem;
}

.profile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
}

.profile-drawer.open {
    transform: translateX(0);
}

.drawer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    border-left: none; /* чтобы примыкало к краю */
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #764ba2;
    font-size: 30px;
    cursor: pointer;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.profile-info label {
    display: block;
    font-size: 12px;
    color: #764ba2;
    margin-top: 15px;
}

.status-badge {
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #764ba2;
}

.status-badge.online { color: #4ade80; }

.edit-prof-btn {
    margin-top: auto; /* Прижмет кнопку к низу панели */
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color:  #764ba2;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.edit-prof-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.edit-prof-btn:active {
    transform: translateY(0);
}

/* Улучшенные границы для инпутов */
.glass-input {
    background: rgba(0, 0, 0, 0.2); /* Сделали фон чуть темнее для контраста */
    border: 2px solid rgba(255, 255, 255, 0.15); /* Четкая граница */
    border-radius: 12px;
    color: white;
    padding: 12px;
    outline: none;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); /* Внутренняя тень для объема */
}

/* Эффект при клике на поле (фокус) */
.glass-input:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #00d4ff; /* Яркий цвет границы при редактировании */
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3), inset 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Выделение кнопок границей */
.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ff4d4d; /* Сделаем текст отмены красным для акцента */
    border: 2px solid rgba(255, 77, 77, 0.4); /* Красная полупрозрачная граница */
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    border-color: #ff4d4d;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

#edit-actions .primary-btn {
    flex: 1;
    background: rgba(0, 212, 255, 0.1); /* Прозрачный фон с цветом */
    color: #00d4ff;
    border: 2px solid #00d4ff; /* Яркая сплошная граница */
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#edit-actions .primary-btn:hover {
    background: #00d4ff; /* Заливка при наведении */
    color: #000; /* Черный текст для контраста при заливке */
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-1px);
}

.profile-drawer.is-stranger .edit-prof-btn {
    display: none !important;
}



/* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */

@media (max-width: 768px) {
    body.app-body { padding: 0; }

    .glass-container {
        height: 100vh;
        border-radius: 0;
        border: none;
        position: relative;
        overflow: hidden; /* Чтобы чат не торчал сбоку */
    }

    /* Сайдбар */
    .app-sidebar {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 10;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.chat-open .app-sidebar {
        transform: translateX(-100%);
    }

    /* Чат */
    .app-main-chat {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: linear-gradient(35deg, #764ba2 0%, #667eea 100%);
        z-index: 20;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.chat-open .app-main-chat {
        transform: translateX(0); /* Выезжаем */
    }
    .header-info {
        display: flex;
        align-items: center; /* Центрирует по вертикали */
        gap: 10px;           /* Отступ между кнопкой и ником */
    }

    .header-info h3 {
        margin: 0;           /* Убираем лишние отступы у текста */
        line-height: 1;      /* Чтобы текст был ровно по центру кнопки */
    }

    .back-btn {
        display: flex !important; /* Показываем только на мобилках */
        background: none;
        border: none;
        padding: 0px;
        margin-right: 0px;
        cursor: pointer;
        flex-shrink: 0;
        color: #764ba2;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }

    .back-btn:active {
        background: rgba(118, 75, 162, 0.1);
    }

    /* Удобство ввода */
    .main-footer { padding: 10px; background: #fff; }
    .input-container { border-radius: 25px; padding: 5px 5px 5px 15px; }
    .input-container input { font-size: 16px !important; }
    .send-btn-modern { width: 45px; height: 45px; border-radius: 50%; }
    
    .msg-bubble { max-width: 90%; font-size: 15px; }

    .profile-drawer {
        width: 100% !important;
        max-width: 100%;
        left: 0;
        padding: 0;
    }

    .drawer-content {
        border-radius: 0;
        padding: 60px 25px 30px;
        height: 100vh;
        background: #fff;
    }

    .profile-avatar {
        width: 120px; 
        height: 120px;
        font-size: 60px;
    }

    .profile-info {
        text-align: left;
        width: 100%;
    }

    .profile-info span {
        font-size: 18px; 
        display: block;
        margin-bottom: 5px;
    }

    .close-drawer {
        top: 15px;
        right: 15px;
        font-size: 45px;
    }

    .edit-prof-btn {
        margin-top: 100px;
        padding: 15px;
        font-size: 16px;
    }
    
}


.back-btn {
    display: none;
}
