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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f5e6d3;
    background-color: #1a1410;
    background-image: 
        radial-gradient(ellipse at top, rgba(212, 105, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1410 0%, #2d2419 50%, #1a1410 100%);
    min-height: 100vh;
}

p {
    margin-bottom: 1rem;
    color: #ad8111;
}

strong {
    color: #66310b;
}
/* Header */
.main-header {
    background: linear-gradient(135deg, #d4691e 0%, #b8601a 25%, #8b4513 75%, #6b3410 100%);
    color: #f5e6d3;
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(212, 105, 30, 0.4), 0 2px 4px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(212, 105, 30, 0.6);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-nav a.admin-link {
    color: #ff6b6b;
    font-weight: bold;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.user-menu .profile-link {
    color: white;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.user-menu .profile-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-menu span {
    color: white;
    white-space: nowrap;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    background: linear-gradient(135deg, #faf8f3 0%, #f5e6d3 100%);
    border-radius: 12px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(212, 105, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border: 1px solid rgba(212, 105, 30, 0.3);
}

/* Typography */
h1 {
    color: #d4691e;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

h2 {
    color: #8b4513;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

h3 {
    color: #2c2416;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Buttons - Dune Inspired with Consistent Height */
.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    min-height: 44px;
    background: linear-gradient(135deg, #d4691e 0%, #b8601a 100%);
    color: #f5e6d3;
    text-decoration: none;
    border: 2px solid rgba(212, 105, 30, 0.6);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 rgba(212, 105, 30, 0);
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}

.btn::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 ease;
}

.btn:hover {
    background: linear-gradient(135deg, #e67725 0%, #c55a15 100%);
    border-color: rgba(230, 119, 37, 0.8);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(212, 105, 30, 0.5);
    transform: translateY(-2px);
    z-index: 1;
}

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

.btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #d4691e 0%, #b8601a 100%);
    border-color: rgba(212, 105, 30, 0.6);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67725 0%, #c55a15 100%);
    border-color: rgba(230, 119, 37, 0.8);
}

.btn-success {
    background: linear-gradient(135deg, #6b8e23 0%, #556b2f 100%);
    border-color: rgba(107, 142, 35, 0.6);
    color: #f5e6d3;
}

.btn-success:hover {
    background: linear-gradient(135deg, #7ba428 0%, #6b8e23 100%);
    border-color: rgba(123, 164, 40, 0.8);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(107, 142, 35, 0.5);
    transform: translateY(-2px);
    z-index: 1;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    min-height: 38px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2416;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(212, 105, 30, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4691e;
    box-shadow: 0 0 0 3px rgba(212, 105, 30, 0.2);
    background: white;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Login Box */
.login-box {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #faf8f3 0%, #f5e6d3 100%);
    border-radius: 12px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(212, 105, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(212, 105, 30, 0.3);
}

.login-box h1 {
    text-align: center;
    color: #d4691e;
    margin-bottom: 0.5rem;
}

.login-box h2 {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.register-link {
    text-align: center;
    margin-top: 1rem;
}

.register-link a {
    color: #d4691e;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Messages */
.error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

/* Actions */
.actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.btn-view {
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c2416;
    border: 2px solid #d4691e;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}

.btn-view:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-view.active {
    background: linear-gradient(135deg, #d4691e 0%, #b8601a 100%);
    color: #f5e6d3;
    border-color: rgba(212, 105, 30, 0.6);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(212, 105, 30, 0.4);
}

/* Grids */
.auctions-grid,
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* List View */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Category Sections */
.category-section {
    margin-bottom: 3rem;
}

.category-header {
    color: #d4691e;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #d4691e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Cards */
.auction-card,
.item-card {
    background: linear-gradient(135deg, #faf8f3 0%, #f5e6d3 100%);
    border: 2px solid rgba(212, 105, 30, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.auction-card:hover,
.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(212, 105, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(212, 105, 30, 0.6);
}

/* List View Card */
.item-card-list {
    display: flex;
    flex-direction: row;
    height: auto;
    overflow: visible;
}

.item-card-list .item-image,
.item-card-list .no-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.item-card-list .item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-card-list:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.auction-image,
.item-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.no-image {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.auction-details,
.item-details {
    padding: 1.5rem;
}

.auction-info,
.item-info {
    margin: 1rem 0;
}

.auction-info p,
.item-info p {
    margin: 0.5rem 0;
}

.description {
    color: #1a1410;
    margin: 1rem 0;
}

.category {
    color: #8b4513;
    font-style: italic;
    margin: 0.5rem 0;
}

/* Item Detail */
.item-detail {
    margin-top: 2rem;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-badge {
    background: #8b4513;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.item-image-large img {
    width: 100%;
    border-radius: 8px;
}

.no-image-large {
    width: 100%;
    height: 400px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border-radius: 8px;
}

.item-meta {
    background: #313131;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    color: #f5e6d3;
}

.item-meta a {
    color: #ffb84d;
}

.item-meta a:hover {
    color: #ffd699;
}

.item-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Auction Detail */
.auction-detail {
    margin-top: 2rem;
}

.auction-main {
    margin-bottom: 2rem;
}

.auction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.auction-image-large img {
    width: 100%;
    border-radius: 8px;
}

.auction-info-panel {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.auction-status {
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.auction-status.active {
    background: #d1ecf1;
    color: #0c5460;
}

.auction-status.sold {
    background: #d4edda;
    color: #155724;
}

.auction-status.expired {
    background: #f8d7da;
    color: #721c24;
}

.price-info {
    margin: 2rem 0;
    text-align: center;
}

.current-price {
    font-size: 2rem;
    color: #d4691e;
    font-weight: bold;
}

.winner-info {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    background: #fff3cd;
    border-radius: 4px;
}

.item-description {
    margin: 2rem 0;
}

/* Bid History */
.bid-history {
    margin-top: 3rem;
}

.bid-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.bid-table th,
.bid-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.bid-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.bid-table tr:hover {
    background: #f8f9fa;
}

/* Filters */
.filters {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.filter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-form input,
.filter-form select {
    flex: 1;
    min-width: 200px;
}

/* Status Badge */
.status-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.status-badge.active {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.sold {
    background: #d4edda;
    color: #155724;
}

.status-badge.expired {
    background: #f8d7da;
    color: #721c24;
}

/* No Data */
.no-data {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Help Box */
.help-box {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.help-box h3 {
    color: #004085;
    margin-bottom: 1rem;
}

.help-box ul {
    margin-left: 1.5rem;
}

.help-box li {
    margin: 0.5rem 0;
}

.help-box a {
    color: #004085;
}

/* Special States */
.winning-bid {
    color: #28a745;
    font-weight: bold;
}

.won-auction {
    color: #155724;
    font-weight: bold;
}

/* Sections */
.my-auctions-section,
.my-bids-section {
    margin: 3rem 0;
}

.back-link {
    margin-top: 2rem;
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .main-nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .user-menu {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .logo a {
        text-align: center;
    }
    
    .auctions-grid,
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .item-content,
    .auction-content {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-form input,
    .filter-form select {
        width: 100%;
    }
    
    /* List view cards stack vertically on mobile */
    .item-card-list {
        flex-direction: column;
    }
    
    .item-card-list .item-image,
    .item-card-list .no-image {
        width: 100%;
        height: 200px;
    }
    
    /* View toggle buttons on mobile */
    .actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .view-toggle {
        width: 100%;
    }
    
    .btn-view {
        flex: 1;
    }
}

/* Profit/Loss Styling */
.profit-positive {
    color: #22c55e;
    font-weight: bold;
}

.profit-negative {
    color: #ef4444;
    font-weight: bold;
}

/* Auction Statistics */
.auction-stats {
    background: linear-gradient(135deg, #faf8f3 0%, #f5e6d3 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(212, 105, 30, 0.3);
}

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

.stat-box {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #d1d5db;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

/* Mark as Sold Form */
.mark-sold-form,
.mark-expired-form {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.mark-sold-form .form-group {
    margin-bottom: 1rem;
}

.mark-sold-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mark-sold-form input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

/* Language Selector */
.language-selector {
    text-align: center;
    margin-bottom: 20px;
}

.language-selector label {
    margin-right: 5px;
}

.language-selector a {
    color: #d4691e;
    text-decoration: none;
    padding: 0 5px;
}

.language-selector a:hover {
    text-decoration: underline;
}

.language-selector a.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Profile Link */
.profile-link {
    margin-right: 10px;
}

/* Profile Form */
.profile-form .form-group small {
    color: #666;
    font-size: 0.85rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2d2419 0%, #1a1410 100%);
    color: #c9b59a;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 3px solid rgba(212, 105, 30, 0.8);
    box-shadow: 
        0 -4px 12px rgba(212, 105, 30, 0.2),
        inset 0 1px 0 rgba(212, 105, 30, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #f5e6d3;
    border-color: rgba(108, 117, 125, 0.6);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #7d868f 0%, #6c757d 100%);
    border-color: rgba(125, 134, 143, 0.8);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(108, 117, 125, 0.5);
    transform: translateY(-2px);
    z-index: 1;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #2c2416;
    border-color: rgba(255, 193, 7, 0.6);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffca2c 0%, #ffc107 100%);
    border-color: rgba(255, 202, 44, 0.8);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
    z-index: 1;
}

.btn-delete {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #f5e6d3;
    border-color: rgba(220, 53, 69, 0.6);
}

.btn-delete:hover {
    background: linear-gradient(135deg, #e4606d 0%, #dc3545 100%);
    border-color: rgba(228, 96, 109, 0.8);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(220, 53, 69, 0.5);
    transform: translateY(-2px);
    z-index: 1;
}

.btn-edit {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #f5e6d3;
    border-color: rgba(23, 162, 184, 0.6);
}

.btn-edit:hover {
    background: linear-gradient(135deg, #3ab4c7 0%, #17a2b8 100%);
    border-color: rgba(58, 180, 199, 0.8);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(23, 162, 184, 0.5);
    transform: translateY(-2px);
    z-index: 1;
}


/* Report Issue Page */
.report-issue-form {
    max-width: 800px;
    margin: 2rem auto;
}

.report-issue-form .required {
    color: #d4691e;
}

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

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #2196F3;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.info-box p {
    margin: 0;
    color: #333;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

