JSFiddle - React, Tailwind, and code Playground

by JoshGough

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SixSeven Eagles Planner</title>
    <style>
        :root {
            --team-blue: #0046A6;
            --team-red: #E03C31;
            --bg-color: #F4F8FB;
            --card-bg: #FFFFFF;
            --text-color: #333333;
            --success: #27ae60;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            padding-bottom: 100px;
        }

        /* --- STICKY HEADER --- */
        .controls-header {
            background-color: white;
            padding: 10px 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 4px solid var(--team-red);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .brand {
            font-weight: 800;
            color: var(--team-blue);
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        .header-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        /* Inputs & Buttons */
        .time-input-group {
            display: flex;
            align-items: center;
            background: #f0f0f0;
            padding: 4px 8px;
            border-radius: 6px;
        }

        .time-input-group label {
            font-size: 0.75rem;
            margin-right: 5px;
            font-weight: bold;
            color: #666;
       ...