/* Claude AI's pretty damn nice CSS work for the tide table. It 1-shot this. */
        .polaroid-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            z-index: 5; /* Sits on top of card-content */
            position: relative;
            filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
            
        }

        

        .polaroid-table th,
        .polaroid-table td {
            padding: 0.8rem 0.5rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgb(224, 224, 182);
            font-family: "Special Elite", system-ui;
            opacity: 60%;
            text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        }

        .polaroid-table th {
            background: rgba(0, 0, 0, 0.5);
            font-family: "Special Elite", system-ui;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #6377a3;
        }

        .polaroid-table td {
            background: rgba(255, 255, 255, 0.05);
            transition: background 0.2s ease;
        }

        .polaroid-table tr:hover td {
            background: rgba(255, 107, 53, 0.1);
        }

        /* Navigation controls */
        .table-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
            padding: 0.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            z-index: 7;
        }

        .nav-button {
            background: linear-gradient(135deg, #1a1924, #211d35);
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-family: "Special Elite", system-ui;
            transition: transform 0.2s ease;
            z-index: 8;
        }

        .nav-button:hover {
            transform: scale(1.05);
        }

        .nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .page-info {
            color: #cccccc;
            font-family: "Special Elite", system-ui;
        }







    @media (max-width: 768px) {
        
        
        .polaroid-table {
            font-size: 0.35rem;
        }

        .nav-button {
            font-size: 0.6rem;
            transform: scale(0.70);
        }

        .nav-button:disabled {
            font-size: 0.6rem;
            transform: scale(0.70);
        }

        .page-info {
            font-size: 0.5rem;
        }

        .polaroid-table th,
        .polaroid-table td {

            font-size: 0.7rem;
            padding: 0.3rem 0rem;
            text-shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
        }

        .polaroid-table th {
            font-size: 0.7rem;
        }

        .table-controls {
            margin: 1rem 0;
            padding: 0.1rem;
            
        }



    }