/* Base Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    padding: 20px;
    background-color: rgba(24, 48, 40, 0.95);
    color: #FFB612;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2 {
    margin: 10px 0;
    font-weight: 700;
}

h1 {
    font-size: 2.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h2 {
    font-size: 1.8em;
    color: #203731;
}

h3 {
    font-size: 1.8em;
    color: #badbd2;
}

section {
    padding: 25px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

/* Ensure sections take full width on smaller screens */
section {
    width: 90%;
    max-width: 700px;
}

/* Style buttons for better mobile interaction */
button {
    padding: 12px 24px;
    background-color: #203731;
    color: #FFB612;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    width: auto;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #FFB612;
    color: #203731;
    transform: scale(1.05);
}

/* Footer fixed to bottom with some breathing room */
footer {
    background-color: rgba(24, 48, 40, 0.95);
    color: #FFB612;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    /* Ensure content doesn't overflow */
    section {
        padding: 20px;
        margin: 20px auto;
    }

    /* Adjust button sizes */
    button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Additional styles for better visual hierarchy */
.section-title {
    color: #203731;
    border-bottom: 2px solid #FFB612;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.data-display {
    font-size: 1.2em;
    font-weight: 600;
    color: #203731;
}

/* Navigation styles */
nav {
    margin-top: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #FFB612;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #FFB612;
    color: #203731;
}

#play_by_play_prob img {
    width: 80%;
    height: auto;
}