 body {
            font-family: 'Helvetica Neue', sans-serif;
            background: linear-gradient(to bottom right, #fff0f5, #ffe6ea);
            padding: 20px;
        }

        .controls {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }


        select,
        input[type="date"] {
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th,
        td {
            padding: 10px;
            border: 1px solid #ccc;
            text-align: center;
        }

        th {
            background: #ff69b4;
            color: white;
        }

        .hidden {
            display: none;
        }

        #loadBtn {
            background-color: #ff69b4;
            color: white;
            border: none;
            padding: 10px 18px;
            font-size: 1rem;
            border-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
        }

        #loadBtn:hover {
            background-color: #ff479a;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
                border-radius: 10px;
            }

            thead,
            tbody,
            th,
            td,
            tr {
                display: inline-block;
                text-align: left;
            }

            thead {
                display: none;
                /* opcional: puedes ocultar el header para pantallas pequeñas */
            }

            td {
                border: none;
                border-bottom: 1px solid #ddd;
                padding: 10px;
                display: flex;
                justify-content: space-between;
                width: 100%;
            }

            tr {
                border: 1px solid #eee;
                margin-bottom: 10px;
                border-radius: 10px;
                background: #fff;
                padding: 10px;
            }
        }