/* GKCSGA Golf League - Custom Styles */

/* GENERAL */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* NAVBAR */
.navbar-brand {
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* FOOTER */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* LOGIN PAGE */
.card {
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}

/* DASHBOARD STAT CARDS */
.card.bg-success,
.card.bg-primary,
.card.bg-warning,
.card.bg-info {
    border-radius: 12px;
    transition: transform 0.2s;
}

.card.bg-success:hover,
.card.bg-primary:hover,
.card.bg-warning:hover,
.card.bg-info:hover {
    transform: translateY(-3px);
}

/* SCHEDULE TABLE */
.table th {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.table-hover tbody tr:hover {
    background-color: #e8f5e9;
    cursor: pointer;
}

/* QUICK ACTION BUTTONS */
.btn-outline-warning:hover,
.btn-outline-secondary:hover,
.btn-outline-info:hover {
    color: white !important;
}

/* ALERTS */
.alert {
    border-radius: 10px;
}

/* BADGES */
.badge {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* FORMS */
.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.input-group-text {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

/* BUTTONS */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* PAGE HEADERS */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* GOLF GREEN ACCENT */
.text-golf-green {
    color: #28a745 !important;
}

.bg-golf-green {
    background-color: #28a745 !important;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .card.bg-success,
    .card.bg-primary,
    .card.bg-warning,
    .card.bg-info {
        margin-bottom: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* COMING SOON PAGE */
.coming-soon-icon {
    font-size: 5rem;
    color: #ffc107;
}

/* SCHEDULE STATUS COLORS */
.status-past {
    opacity: 0.6;
}

.status-next {
    background-color: #d4edda !important;
    font-weight: bold;
}

.status-future {
    background-color: #ffffff;
}
@media print {
    .d-print-none { display: none !important; }
    .d-none.d-print-block { display: block !important; }
    .navbar { display: none !important; }
    .footer { display: none !important; }
    .card { break-inside: avoid; }
    body { font-size: 12px; }
}