/* Seniles Golf Group Custom Styles */

:root {
    --golf-green: #166534;
    --gold: #ca8a04;
    --stone: #f5f5f4;
    --dark-slate: #1c1917;
}

body {
    background-color: var(--stone);
    font-family: 'Georgia', serif; /* Classic golf feel */
    color: var(--dark-slate);
}

/* Header & Hero */
.clubhouse-header {
    background: linear-gradient(rgba(20, 50, 20, 0.8), rgba(20, 50, 20, 0.8)), 
                url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* The Results Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.results-table th {
    background-color: var(--golf-green);
    color: white;
    padding: 15px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.results-table td {
    padding: 15px;
    border-bottom: 1px solid #e7e5e4;
}

.results-table tr:hover {
    background-color: #f0fdf4;
}

/* Admin Buttons */
.btn-primary {
    background-color: var(--golf-green);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #14532d;
}