/* LinkedIn Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.4;
}

/* Top Navigation */
.top-nav {
    background-color: #000000;
    border-bottom: 1px solid #333333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    gap: 40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar i {
    position: absolute;
    left: 12px;
    color: #999;
    font-size: 14px;
}

.search-bar input {
    width: 300px;
    height: 36px;
    padding: 0 12px 0 36px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 14px;
}

.search-bar input:focus {
    outline: none;
    background-color: #3a3a3a;
    border-color: #ffffff;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: #999;
    border-radius: 4px;
    transition: all 0.2s;
    min-width: 80px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background-color: #333333;
}

.nav-link i {
    font-size: 20px;
    margin-bottom: 4px;
}

.nav-link span {
    font-size: 12px;
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.user-menu:hover {
    background-color: #f3f2ef;
}

.user-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.user-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.login-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #e0e0e0;
}

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

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #333333;
    border-radius: 4px;
    font-size: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
}

.forgot-password {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    margin-top: 8px;
    display: block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    height: 48px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 12px;
}

.btn-primary:hover {
    background-color: #e0e0e0;
}

.btn-secondary {
    width: 100%;
    height: 48px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #333333;
    color: #ffffff;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.signup-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Main Container */
.main-container {
    display: flex;
    margin-top: 60px;
    padding-top: 20px;
    min-height: calc(100vh - 60px);
    background-color: #1a1a1a;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background-color: #2a2a2a;
    border-right: 1px solid #333333;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user-card {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
}

.user-cover {
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.user-info {
    padding: 20px;
    text-align: center;
    position: relative;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: -40px;
    margin-bottom: 12px;
}

.user-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.user-info p {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.user-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #333333;
    padding-top: 16px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.stat .label {
    font-size: 12px;
    color: #999;
}

.sidebar-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.activity-list,
.quick-links {
    list-style: none;
}

.activity-list li,
.quick-links li {
    padding: 8px 0;
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-list i,
.quick-links i {
    color: #ffffff;
    width: 16px;
}

.quick-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.quick-links a:hover {
    color: #ffffff;
}

.trending-list {
    list-style: none;
}

.trending-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
}

.trending-list li:last-child {
    border-bottom: none;
}

.trending-list a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.trending-list a:hover {
    color: #ffffff;
}

.connections {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connection {
    display: flex;
    align-items: center;
    gap: 12px;
}

.connection img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.connection span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/* Main Feed */
.main-feed {
    flex: 1;
    margin-left: 280px;
    padding: 20px;
    background-color: #1a1a1a;
}

.feed-container {
    max-width: 600px;
    margin: 0 auto;
}

.feed-header,
.page-header {
    margin-bottom: 24px;
}

.feed-header h1,
.page-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feed-header p,
.page-header p {
    font-size: 16px;
    color: #999;
}

/* Posts */
.feed-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-card {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 20px;
}

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

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.post-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #ffffff;
}

.post-info p {
    font-size: 14px;
    color: #999;
}

.post-content {
    margin-bottom: 16px;
}

.post-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

.post-actions {
    display: flex;
    gap: 16px;
    border-top: 1px solid #333333;
    padding-top: 16px;
}

.action-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

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

/* Page Content */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.module-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s;
}

.module-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.module-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0077b5;
}

.module-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 4px;
    height: 8px;
    margin-bottom: 8px;
}

.progress-fill {
    background-color: #0077b5;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s;
}

/* Grades Grid */
.grades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grade-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.grade-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0077b5;
}

.grade-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.grade-excellent {
    background-color: #28a745;
}

.grade-good {
    background-color: #ffc107;
    color: #000000;
}

.grade-poor {
    background-color: #dc3545;
}

/* Messages List */
.messages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.message-card.unread {
    border-left: 4px solid #0077b5;
}

.message-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0077b5;
}

.message-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

/* Profile Button */
.profile-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.profile-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.profile-btn:active {
    transform: scale(0.95);
}

/* Profile Content */
.profile-content {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
}

.profile-form {
    max-width: 400px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .main-feed {
        margin-left: 0;
    }
    
    .nav-center {
        display: none;
    }
    
    .search-bar input {
        width: 200px;
    }
    
    .modules-grid,
    .grades-grid {
        grid-template-columns: 1fr;
    }
}

/* Media Page Styles */
.media-toolbar {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.media-actions {
    display: flex;
    gap: 12px;
}

.media-filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.media-filters select,
.media-filters input {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #333333;
    border-radius: 4px;
    font-size: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.media-filters input {
    width: 200px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.no-media {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    background-color: #333333;
    border-radius: 8px;
    border: 2px dashed #555555;
}

/* DeviantArt Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.artwork-card {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.artwork-card h3 {
    margin: 12px 16px 8px;
    font-size: 18px;
    color: #ffffff;
}

.artwork-card p {
    margin: 0 16px 12px;
    color: #999;
    font-size: 14px;
}

.artwork-stats {
    display: flex;
    gap: 16px;
    padding: 0 16px 16px;
    font-size: 14px;
    color: #999;
}

.artwork-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.favourites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.favourite-item {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.favourite-item:hover {
    transform: translateY(-2px);
}

.favourite-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.favourite-item h4 {
    margin: 8px 12px 4px;
    font-size: 16px;
    color: #ffffff;
}

.favourite-item p {
    margin: 0 12px 12px;
    color: #999;
    font-size: 12px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.about-content h3 {
    color: #ffffff;
    margin: 24px 0 12px;
}

.about-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.about-content li {
    margin: 8px 0;
    color: #999;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #333333;
    border-radius: 8px;
}

.stat-item .number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.stat-item .label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.shop-item {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.shop-item:hover {
    transform: translateY(-2px);
}

.shop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shop-item h3 {
    margin: 12px 16px 8px;
    font-size: 18px;
    color: #ffffff;
}

.shop-item p {
    margin: 0 16px 12px;
    color: #999;
    font-size: 14px;
}

.price {
    margin: 0 16px 16px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.watch-feed {
    margin-top: 20px;
}

.watch-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background-color 0.2s;
}

.watch-item:hover {
    background-color: #333333;
}

.watch-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.watch-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #ffffff;
}

.watch-info p {
    margin: 0 0 4px;
    color: #999;
    font-size: 14px;
}

.watch-info .time {
    font-size: 12px;
    color: #999;
}

.media-item {
    background-color: #2a2a2a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.media-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.media-item.selected {
    border-color: #0077b5;
    box-shadow: 0 0 0 2px rgba(0, 119, 181, 0.2);
}

.media-item.selected::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background-color: #0077b5;
    border-radius: 50%;
    z-index: 2;
}

.media-item.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.media-preview {
    width: 100%;
    height: 150px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.media-preview .file-icon {
    font-size: 48px;
    color: #999;
}

.media-preview .file-icon.pdf {
    color: #ff6b6b;
}

.media-preview .file-icon.doc {
    color: #4dabf7;
}

.media-preview .file-icon.video {
    color: #51cf66;
}

.media-info {
    padding: 12px;
}

.media-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-size {
    font-weight: 500;
}

.media-date {
    color: #999;
}

.media-actions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.media-item:hover .media-actions-overlay {
    display: flex;
}

.media-action-btn {
    background-color: rgba(42, 42, 42, 0.9);
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #ffffff;
}

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

.media-action-btn.delete {
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
}

.media-action-btn.delete:hover {
    background-color: #dc3545;
}

/* Upload Modal */
.upload-modal {
    width: 500px;
}

.upload-area {
    border: 2px dashed #555555;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background-color: #333333;
    transition: all 0.2s;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #ffffff;
    background-color: #444444;
}

.upload-area.dragover {
    border-color: #ffffff;
    background-color: #555555;
}

.upload-area i {
    font-size: 48px;
    color: #999;
    margin-bottom: 16px;
}

.upload-area p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

.upload-progress {
    margin-top: 20px;
}

.upload-progress .progress-bar {
    width: 100%;
    height: 8px;
    background-color: #333333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.upload-progress .progress-fill {
    height: 100%;
    background-color: #ffffff;
    transition: width 0.3s;
    width: 0%;
}

.upload-progress span {
    font-size: 14px;
    color: #999;
}

/* Bulk Actions */
.bulk-actions {
    background-color: #333333;
    border: 1px solid #555555;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.bulk-actions.active {
    display: flex;
}

.bulk-actions-info {
    font-size: 14px;
    color: #999;
}

.bulk-actions-buttons {
    display: flex;
    gap: 8px;
}

.bulk-actions-buttons .btn {
    padding: 6px 12px;
    font-size: 12px;
}

/* Full Page Login */
.login-page-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.login-container {
    background-color: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    margin: 20px;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 16px;
    color: #999;
    margin: 0;
}

.login-form-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.logout-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logout-btn:hover {
    background-color: #c82333;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin: 16px 0;
    font-size: 14px;
}

.alert-error {
    background-color: #5a2d2d;
    color: #ff6b6b;
    border: 1px solid #7c4a4a;
}

.alert-success {
    background-color: #2d5a2d;
    color: #90ee90;
    border: 1px solid #4a7c4a;
}