@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* General Body Styles */
:root {
    --primary-color: #2c3e50; /* Dark Blue */
    --secondary-color: #ffffff;
    --accent-color: #3498db; /* Bright Blue */
    --text-color: #333;
    --light-text-color: #ecf0f1;
    --bg-color: #f4f6f8; /* Light Grey */
    --border-color: #e0e0e0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation Bar */
.navbar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin-left: 25px;
}

.navbar-menu a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-links {
    display: flex;
    align-items: center;
}

.navbar-actions {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 10px;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9; /* Darker blue */
    color: var(--secondary-color);
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 5px;
}

/* Drawer Menu */
.drawer-menu {
    position: fixed;
    top: 0;
    right: -280px; /* Start off-screen */
    width: 280px;
    height: 100%;
    background-color: var(--primary-color);
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 99;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.drawer-menu.is-open {
    right: 0;
}

.drawer-menu ul {
    list-style: none;
    padding: 0;
}

.drawer-menu ul li {
    padding: 15px 25px;
    text-align: center;
}

.drawer-menu ul li a {
    color: var(--light-text-color);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Home Page Grid */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-cover {
    width: 100%;
    height: 200px;
    position: relative;
}

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

.card-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
}


.card-content {
    padding: 20px;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--primary-color);
    
    /* Truncate to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta {
    font-size: 0.8rem;
    color: #666;
    margin-top: auto; /* Pushes meta to the bottom of the card content */
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-grid h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-grid p, .footer-grid a {
    color: var(--light-text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-grid a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

/* Friend links specific styles */
.friend-links a {
    display: flex;
    align-items: center;
    padding: 2px 0;
    font-size: 0.9rem;
}

.friend-links img {
    display: inline-block;
    border-radius: 2px;
    object-fit: cover;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

.social-links svg {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none; /* Hide desktop menu and buttons */
    }

    .menu-toggle {
        display: flex; /* Show hamburger menu */
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .article-body {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .article-header h1 {
        font-size: 2rem; /* 减小移动端标题字体 */
    }
}

/* Article Detail Page Styles */
.article-header {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
}

.article-cover-full {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* 文章内容特殊元素宽度控制 */
.article-body pre,
.article-body code {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
    background: var(--background-color);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.article-body table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    border-collapse: collapse;
    margin: 1rem 0;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.article-body blockquote {
    max-width: 100%;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.pagination-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pagination-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
}

.pagination-info {
    background: var(--background-color);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 500;
    border: 2px solid #f0f0f0;
}

.pagination-prev {
    order: -1;
}

.pagination-next {
    order: 1;
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .pagination-info {
        order: -1;
        font-size: 0.9rem;
    }
}

/* Live Stream Styles */
.live-stream-section {
    margin-bottom: 4rem;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stream-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
}

.stream-btn {
    background: var(--background-color);
    color: var(--text-color);
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stream-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stream-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.live-player-container {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Plyr customization for live stream */
.live-player-container .plyr {
    border-radius: 15px;
}

.live-player-container .plyr__video-wrapper {
    background: #000;
    border-radius: 15px;
}

.live-player-container .plyr--video {
    background: #000;
    border-radius: 15px;
}

.live-player-container .plyr__poster {
    border-radius: 15px;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Live Stream Responsive */
@media (max-width: 768px) {
    .live-stream-section {
        padding: 0.5rem;
        margin-bottom: 3rem;
    }
    
    .stream-controls {
        gap: 8px;
    }
    
    .stream-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    #livePlayer {
        min-height: 200px;
        max-height: 300px;
    }
    
    .loading-spinner span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stream-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .stream-btn {
        width: 80%;
        text-align: center;
    }
}

/* Settings Page Styles */
.settings-section {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn.primary {
    background: var(--primary-color);
    color: white;
}

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn.secondary {
    background: #f5f5f5;
    color: var(--text-color);
    border: 1px solid #ddd;
}

.btn.secondary:hover {
    background: #e5e5e5;
}

.stream-sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.stream-source-card {
    background: var(--background-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stream-source-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.card-actions {
    display: flex;
    gap: 5px;
}

.card-actions button {
    padding: 5px 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.toggle-btn {
    background: #f5f5f5;
    color: #666;
}

.toggle-btn.active {
    background: #4CAF50;
    color: white;
}

.toggle-btn:hover {
    transform: scale(1.1);
}

.edit-btn {
    background: #2196F3;
    color: white;
}

.edit-btn:hover {
    background: #1976D2;
}

.delete-btn {
    background: #f44336;
    color: white;
}

.delete-btn:hover {
    background: #d32f2f;
}

.card-content {
    line-height: 1.6;
}

.stream-url {
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.stream-description {
    margin-bottom: 0.5rem;
}

.stream-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.status.active {
    color: #4CAF50;
    font-weight: 500;
}

.status.inactive {
    color: #f44336;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--background-color);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.close-btn:hover {
    color: #333;
}

.modal-content form {
    padding: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Message Container */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
}

.message {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    animation: messageSlideIn 0.3s ease;
}

.message.success {
    background: #4CAF50;
    color: white;
}

.message.error {
    background: #f44336;
    color: white;
}

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

/* Responsive Settings */
@media (max-width: 768px) {
    .settings-section {
        padding: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .stream-sources-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stream-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Sidebar and Widget Styles */
.main-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .main-layout-grid {
        grid-template-columns: 3fr 1fr;
    }
}

.sidebar .widget {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 0.6rem;
}

.widget-list li a {
    color: #555;
    font-weight: 500;
}

.widget-list li a:hover {
    color: var(--accent-color);
}

.search-widget {
    display: flex;
}

.search-widget input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-widget button {
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.article-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Video Detail Page Styles */
.plyr--video {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.episode-list h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.episode-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.episode-list li a {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    margin-bottom: -1px; /* Collapse borders */
    color: var(--primary-color);
    font-weight: 500;
}

.episode-list li a:hover {
    background-color: #e9ecef;
}

.episode-list li a.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

/*
=================================
Post Form Styles
=================================
*/

.post-form {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-form h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
}

/*
=================================
Authentication Styles
=================================
*/

.user-welcome {
    color: var(--light-text-color);
    font-size: 0.9rem;
    margin-right: 1rem;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    color: var(--light-text-color);
    border: 2px solid var(--light-text-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--light-text-color);
    color: var(--primary-color);
}

/* Responsive authentication styles */
@media (max-width: 768px) {
    .navbar-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-welcome {
        margin-right: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}
