/* Cricket Auction System Custom Styles */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    color: #fff !important;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 8px;
}

.card-header {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 8px 8px 0 0 !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 123, 255, 0.05);
}

.badge {
    font-size: 0.8em;
    padding: 0.3em 0.6em;
}

.alert {
    border-radius: 8px;
}

.form-control, .form-select {
    border-radius: 6px;
}

.list-group-item {
    border-radius: 6px;
    margin-bottom: 2px;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Dashboard statistics cards */
.bg-primary {
    background-color: #007bff !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .table-responsive {
        font-size: 0.9em;
    }
}

/* Loading spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
}

/* Custom dropdown styles */
.dropdown-menu {
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Team logo styles */
.team-logo {
    max-width: 50px;
    max-height: 50px;
    border-radius: 4px;
}

/* Auction status badges */
.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

/* Footer styles */
.footer {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #343a40;
    color: white;
    text-align: center;
}
