/* SKRIX Web App - Telegram-inspired Monochrome Dark Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #141414;
    --bg-hover: #1F1F1F;
    --border-color: #1F1F1F;
    --text-primary: #FFFFFF;
    --text-secondary: #6B6B6B;
    --accent: #2A2A2A;
    --accent-light: #3A3A3A;
    --danger: #808080;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none !important;
}

/* ========================================
   LOADING SCREEN
   ======================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ========================================
   AUTHENTICATION SCREEN
   ======================================== */

.auth-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 3rem;
}

.auth-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-form {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.form-description.warning {
    color: rgba(255, 200, 150, 0.9);
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.mnemonic-input {
    font-family: 'Courier New', monospace;
    resize: vertical;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    line-height: 1.3;
    font-style: italic;
}

.btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F5F5F5 0%, #D0D0D0 100%);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-danger {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-danger:hover {
    background: var(--accent);
}

.form-footer {
    margin-top: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-footer a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.form-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.form-footer a:hover::after {
    width: 100%;
}

.error-message {
    margin-top: 1rem;
    padding: 0.875rem 1.125rem;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.2);
    border-left: 3px solid rgba(255, 100, 100, 0.5);
    border-radius: 8px;
    color: rgba(255, 200, 200, 0.9);
    font-size: 0.85rem;
    display: none;
    animation: errorSlideIn 0.3s ease-out;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message.show {
    display: block;
}

/* Mnemonic Display */
.mnemonic-display {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mnemonic-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-primary);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 255, 255, 0.3);
    }
}

.mnemonic-words {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mnemonic-word {
    padding: 0.625rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.mnemonic-word:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mnemonic-word-num {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.mnemonic-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.warning-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-primary);
}

.mnemonic-warning p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* ========================================
   MAIN APP CONTAINER
   ======================================== */

.app-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* ========================================
   SIDEBAR
   ======================================== */

.sidebar {
    width: 360px;
    height: 100vh;
    background: var(--bg-primary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-user-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.sidebar-user-info:hover {
    background: var(--bg-hover);
}

.sidebar-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-user-text {
    flex: 1;
    min-width: 0;
}

.sidebar-username {
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.icon-btn:hover {
    background: var(--bg-hover);
}

.icon-btn:hover svg {
    color: var(--text-primary);
}

/* Search */
.search-container {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.search-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-results {
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: var(--bg-hover);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Chat List */
.chat-list {
    flex: 1;
    overflow-y: auto;
}

.empty-state {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.empty-state p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.empty-state small {
    font-size: 0.85rem;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.chat-item:hover {
    background: var(--bg-secondary);
}

.chat-item.active {
    background: var(--bg-tertiary);
}

.chat-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.chat-item-name {
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-item-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.chat-item-preview {
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-item-unread {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 10px;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: inline-block;
}

/* ========================================
   CHAT AREA
   ======================================== */

.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    position: relative;
}

.empty-chat-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.empty-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-chat-state h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.empty-chat-state p {
    font-size: 0.9rem;
}

/* Chat View */
.chat-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Chat Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.chat-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Messages Container */
.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

.messages-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.message {
    display: flex;
    margin-bottom: 0.75rem;
    animation: messageSlideIn 0.2s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.outgoing {
    justify-content: flex-end;
}

.message.incoming {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 70%;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    word-wrap: break-word;
    position: relative;
}

.message.outgoing .message-bubble {
    background: var(--accent);
    color: var(--text-primary);
    border-bottom-right-radius: 4px;
}

.message.incoming .message-bubble {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.message-content {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: right;
}

.message.incoming .message-time {
    text-align: left;
}

/* Message Input */
.message-input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.message-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
}

.message-input:focus {
    outline: none;
    border-color: var(--accent);
}

.message-input::placeholder {
    color: var(--text-secondary);
}

.send-btn {
    background: transparent;
}

.send-btn:hover {
    background: var(--bg-hover);
}

.send-btn:hover svg {
    color: var(--text-primary);
}

/* ========================================
   SETTINGS PANEL
   ======================================== */

.settings-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.settings-panel.show {
    transform: translateX(0);
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.settings-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    flex: 1;
}

.settings-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-profile {
    text-align: center;
    padding: 2rem 0;
}

.settings-avatar {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.settings-profile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.settings-profile p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.settings-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.settings-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.settings-info > p {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.settings-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.settings-menu-item:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.menu-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.settings-menu-item span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.logout-icon {
    width: 18px;
    height: 18px;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 6px;
}

.session-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.session-info {
    flex: 1;
}

.session-device {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.session-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.settings-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .sidebar {
        width: 100vw;
        position: absolute;
        z-index: 50;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .settings-panel {
        width: 100vw;
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    .sidebar-user-info {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
    
    .mnemonic-display {
        padding: 1.5rem;
    }
    
    .mnemonic-words {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
        gap: 0.625rem;
    }
    
    .form-title {
        font-size: 1.35rem;
    }
    
    .form-description {
        font-size: 0.8rem;
    }
    
    .sidebar-user-info {
        max-width: 140px;
    }
    
    .sidebar-username {
        font-size: 0.85rem;
    }
}

