/* Root Variables */
:root {
    --primary-yellow: #FFD700;
    --primary-red: #FF4444;
    --gradient-bg: linear-gradient(135deg, #FFD700, #FF4444, #FFD700);
    --header-bg: #ffffff;
    --main-bg: #f5f5f5;
    --footer-bg: #e0e0e0;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-hover: #888888;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --border-radius: 12px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--main-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Disable right-click and common shortcuts */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.menu-toggle:hover {
    background-color: #f0f0f0;
}

.logo-container {
    flex: 1;
    text-align: center;
}

.logo {
    height: 35px;
    width: auto;
    cursor: pointer;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-toggle,
.notification-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    position: relative;
    transition: background-color 0.2s;
}

.search-toggle:hover,
.notification-btn:hover {
    background-color: #f0f0f0;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-red);
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    display: none;
}

/* Search Bar */
.search-bar {
    display: none;
    align-items: center;
    padding: 0 15px;
    height: 50px;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
}

.search-bar.active {
    display: flex;
}

.search-back {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    margin-right: 10px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px;
    background: transparent;
}

.search-submit {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--header-bg);
    box-shadow: var(--shadow);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.menu-content {
    padding: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.menu-profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.menu-user-details {
    flex: 1;
}

.menu-username {
    display: block;
    font-weight: bold;
    font-size: 16px;
}

.menu-followers {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
}

.menu-item:hover {
    color: var(--text-hover);
}

.menu-item i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    margin-top: 50px;
    padding: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 150px);
}

/* Welcome Box */
.welcome-box {
    background: var(--gradient-bg);
    color: var(--text-primary);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.welcome-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inline-emoji {
    width: 24px;
    height: 24px;
}

.welcome-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-btn {
    background: var(--header-bg);
    color: var(--text-primary);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Posts Container */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Post Card */
.post-card {
    background: var(--header-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-2px);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
}

.post-user-info {
    flex: 1;
}

.post-username {
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
}

.post-username:hover {
    color: var(--text-hover);
}

.post-time {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 2px;
}

.post-options {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.post-options:hover {
    background-color: #f0f0f0;
}

.post-media {
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.post-media img,
.post-media video {
    width: 100%;
    height: auto;
    display: block;
}

.post-caption {
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid var(--border-color);
}

.action-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 20px;
    transition: all 0.2s;
    font-size: 14px;
}

.action-btn:hover {
    background-color: #f0f0f0;
}

.action-btn.active {
    color: var(--primary-red);
}

.action-btn.upvoted {
    color: var(--primary-yellow);
}

.action-btn.downvoted {
    color: var(--primary-red);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-bg);
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.2s;
    z-index: 999;
}

.fab:hover {
    transform: scale(1.1);
}

/* Loading */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: var(--text-secondary);
}

.loading.hidden {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-hover);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 15px;
        margin-top: 50px;
    }
    
    .welcome-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .welcome-box h2 {
        font-size: 20px;
    }
    
    .post-actions {
        padding: 10px 15px;
    }
    
    .action-group {
        gap: 15px;
    }
    
    .action-btn {
        font-size: 13px;
        gap: 6px;
    }
    
    .fab {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Auth Page Styles */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--main-bg);
}

.auth-box {
    background: var(--header-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.auth-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: var(--header-bg);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-bg);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-switch {
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.error-message {
    background: #ffe6e6;
    color: #d63031;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #fab1a0;
}

.success-message {
    background: #e6f7e6;
    color: #00b894;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #81ecec;
}

/* Username availability indicator */
.username-status {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

.username-status.available {
    color: #00b894;
}

.username-status.taken {
    color: #d63031;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--header-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

/* Upload Area Styles */
.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: var(--primary-yellow);
    background: #fffbf0;
}

.upload-icon {
    font-size: 48px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.upload-text {
    color: var(--text-secondary);
    font-size: 16px;
}

.upload-subtext {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 5px;
}

.media-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    margin: 15px 0;
}

.caption-input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 20px;
}

.caption-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Badge Styles */
.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 5px;
}

.badge-brown { color: #8B4513; }
.badge-golden { color: #FFD700; }
.badge-red { color: #FF0000; }
.badge-star { color: #FF6B35; }

/* Profile Styles */
.profile-header {
    background: var(--header-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    text-align: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-username {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 15px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--header-bg);
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.profile-btn:hover {
    border-color: var(--primary-yellow);
    background: #fffbf0;
}

.profile-btn.primary {
    background: var(--gradient-bg);
    border-color: transparent;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-bg);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--header-bg);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    z-index: 1001;
    top: 100%;
    right: 0;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--main-bg);
}

/* Notification Styles */
.notification-panel {
    position: fixed;
    top: 50px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: var(--header-bg);
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1001;
    display: none;
    overflow-y: auto;
}

.notification-panel.active {
    display: block;
}

.notification-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: bold;
    font-size: 18px;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: var(--main-bg);
}

.notification-item.unread {
    background-color: #fffbf0;
}

.notification-message {
    font-size: 14px;
    margin-bottom: 5px;
}

.notification-time {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Admin Styles */
.admin-container {
    padding: 20px;
    max-width: 1200px;
    margin: 70px auto 0;
}

.admin-header {
    background: var(--header-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    text-align: center;
}

.admin-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-nav-btn {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--header-bg);
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.admin-nav-btn:hover,
.admin-nav-btn.active {
    border-color: var(--primary-yellow);
    background: #fffbf0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--header-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

.data-table {
    background: var(--header-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.table-title {
    font-size: 20px;
    font-weight: bold;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box input {
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-bg);
    color: var(--text-primary);
}

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

.btn-warning {
    background: #ff9500;
    color: white;
}

.btn-success {
    background: #00b894;
    color: white;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.table-content {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--main-bg);
    font-weight: bold;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.status-active {
    background: #e6f7e6;
    color: #00b894;
}

.status-banned {
    background: #ffe6e6;
    color: #d63031;
}

.status-suspended {
    background: #fff3cd;
    color: #856404;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

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

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

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

/* Media Queries */
@media (max-width: 1024px) {
    .admin-nav {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .auth-box {
        padding: 30px 20px;
    }
    
    .profile-header {
        padding: 20px;
    }
    
    .profile-pic {
        width: 100px;
        height: 100px;
    }
    
    .profile-stats {
        gap: 20px;
    }
    
    .profile-actions {
        gap: 10px;
    }
    
    .profile-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .notification-panel {
        width: 100%;
        right: 0;
        left: 0;
        border-radius: 0;
    }
    
    .admin-container {
        padding: 10px;
        margin-top: 60px;
    }
    
    .admin-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .table-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-box h2 {
        font-size: 18px;
        flex-direction: column;
        gap: 5px;
    }
    
    .post-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-group {
        justify-content: space-around;
        width: 100%;
    }
    
    .side-menu {
        width: 100%;
        left: -100%;
    }
    
    .menu-content {
        padding: 15px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-subtitle {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .header,
    .side-menu,
    .fab,
    .footer {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .post-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
