
    @import url("/css/light.css?03583d6ef5a65a8a14b2cb4a5b58105efdefa046777d5b99ae05eea4") screen and (prefers-color-scheme: light);
    @import url("/css/dark.css?03583d6ef5a65a8a14b2cb4a5b58105efdefa046777d5b99ae05eea4") screen and (prefers-color-scheme: dark);
    @media (prefers-color-scheme: light) {
        :root {
    --theme-primary-rgb: 56,52,51;
    --theme-secondary-rgb: 60,58,58;

    --theme-bg-page-rgb: 39,36,36;
    --theme-bg-primary-rgb: 29,27,27;
    --theme-bg-secondary-rgb: 34,34,34;

        }
    }
    @media (prefers-color-scheme: dark) {
        :root {
    --theme-primary-rgb: 39,44,48;
    --theme-secondary-rgb: 108,117,125;

    --theme-bg-page-rgb: 34,34,34;
    --theme-bg-primary-rgb: 52,58,64;
    --theme-bg-secondary-rgb: 33,37,41;

        }
    }


    :root {
        --theme-gradient: rgba(var(--theme-primary-rgb), var(--theme-opacity));
    }




    :root {
        --theme-border-radius: 0.85rem;
    }

    .btn, .badge, .card,
    div.table-responsive,
    .form-control, .form-select,
    .form-switch .form-check-input,
    .text-editor .toolbar-bubble .toolbar,
    .modal-content,
    .input-group-text,
    .page-item .page-link.page-link, .page-item span,
    .btn-group > .btn,
    .input-group > .form-control,
    .input-group > .form-select,
    .input-group > .input-group-text,
    .input-group > .btn,
    div.swal2-popup, button.swal2-styled.swal2-styled, .swal2-input, .swal2-select,
    .ace_editor {
        border-radius: var(--theme-border-radius);
    }

    .card-img-top {
        border-top-left-radius: calc(var(--theme-border-radius) - 1px);
        border-top-right-radius: calc(var(--theme-border-radius) - 1px);
    }

    .table {
        margin-bottom: 0;
    }

    .table-responsive {
        margin-bottom: 1rem;
    }

            .page-item .page-link {
            height: 35px;
            width: 35px;
            margin: 0 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    


	&lt;style&gt;
  body {
    font-family: &quot;Segoe UI&quot;, Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    padding: 2rem;
  }

  h1 {
    text-align: center;
    font-size: 2rem;
    color: #00ffcc;
    margin-bottom: 1.5rem;
  }

  ul#reservas {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  ul#reservas li {
    background-color: #1e1e1e;
    margin-bottom: 1rem;
    padding: 1rem;
    border-left: 5px solid #00ffcc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 255, 204, 0.2);
    transition: transform 0.2s ease;
  }

  ul#reservas li:hover {
    transform: translateY(-3px);
  }
  @media (prefers-color-scheme: light), (prefers-color-scheme: dark) {
  body {
    background-color: #121212 !important;
    color: #f0f0f0 !important;
  }

  ul#reservas li {
    background-color: #1e1e1e !important;
    border-left-color: #00ffcc !important;
  }

  h1 {
    color: #00ffcc !important;
  }
}
&lt;/style&gt;

