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

.card-header {
    background-color: #f8f9fa;
}

.table th {
    background-color: #f8f9fa;
}

.btn-info {
    color: #fff;
}

.modal-header {
    background-color: #f8f9fa;
}

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

#game-details .card {
    margin-bottom: 1rem;
}

#players-list .table {
    margin-bottom: 0;
}

.btn-danger {
    margin-top: 1rem;
}

/* Registration page specific styles */
#registrationTabs {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #dee2e6;
    width: 100%;
    justify-content: flex-start;
}

#registrationTabs .nav-item {
    margin-right: 0.5rem;
}

#registrationTabs .nav-item:last-child {
    margin-right: 0;
}

#registrationTabs .nav-link {
    color: #495057 !important;
    background-color: transparent !important;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-radius: 0.25rem 0.25rem 0 0;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    display: block;
}

#registrationTabs .nav-link.active {
    color: #007bff !important;
    background-color: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff;
    font-weight: 500;
}

#registrationTabs .nav-link:hover:not(.active) {
    color: #0056b3 !important;
    border-color: #e9ecef #e9ecef #dee2e6;
}

/* Mobile styles for registration tabs */
@media (max-width: 768px) {
    #registrationTabs {
        justify-content: flex-start;
    }
    #registrationTabs .nav-item {
        flex: 0 0 auto;
        max-width: 140px;
    }
    #registrationTabs .nav-link {
        width: 100%;
        min-width: 100px;
        font-size: 0.95rem;
        padding: 0.4rem 0.5rem;
        text-align: center;
    }
}

/* Notification animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

/* Notification styles */
.notification {
    transition: all 0.3s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.3px;
}

/* Ensure notifications don't overlap with fixed elements */
#notification-container {
    margin-top: 0;
}

/* Adjust main content to account for notification */
body {
    transition: padding-top 0.3s ease-out;
}

/* Fixed elements that need to be adjusted */
.navbar {
    transition: top 0.3s ease-out;
}

/* Mobile-specific logout button styles */
@media (max-width: 768px) {
    #logout-btn {
        border-radius: 4px !important;
        padding: 0.75rem 1.5rem !important;
        font-weight: 500 !important;
        font-size: 0.875rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        transition: all 0.2s ease !important;
        min-width: 120px !important;
        height: 40px !important;
        border: none !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        background-color: transparent !important;
        color: white !important;
    }
    
    #logout-btn:hover {
        background-color: white !important;
        color: #343a40 !important;
    }
}

/* Navigation styles */
.navbar-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-item {
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    display: block;
    transition: color 0.15s ease-in-out;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link.active {
    color: #fff !important;
    font-weight: 400;
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 0;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Rest of your existing styles... */ 