body {
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 2rem;
}

.navbar-brand img {
    /* Removed filter to show original logo colors */
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 32px !important;
    }
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

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

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.alert {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 500;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

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

/* Booking Details Table Styles */
.table-danger {
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
}

.table-warning {
    background-color: #fff3cd !important;
    border-color: #ffeaa7 !important;
}

.table-success {
    background-color: #d1edff !important;
    border-color: #bee5eb !important;
}

.table-danger:hover {
    background-color: #f1b0b7 !important;
}

.table-warning:hover {
    background-color: #ffeaa7 !important;
}

.table-success:hover {
    background-color: #bee5eb !important;
}

/* Player tags styling */
.player-tag {
    display: inline-block;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 4px 12px;
    margin: 2px;
    font-size: 0.875rem;
    position: relative;
}

.remove-tag {
    cursor: pointer;
    margin-left: 8px;
    color: #dc3545;
    font-weight: bold;
}

.remove-tag:hover {
    color: #c82333;
}

/* Search results styling */
.search-result-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

/* Calendar day styling */
.calendar-day {
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-day:hover {
    opacity: 0.8;
} 