
    body {
      background-color: #ffffff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
      padding-bottom: 80px;
    }

    .navbar-brand {
      color: #406d96 !important;
      font-weight: 700;
    }

    .btn-primary {
      background-color: #406d96 !important;
      border-color: #406d96 !important;
    }
    footer {
      background-color: #406d96;
      color: white;
      margin-top: auto;
      padding: 2rem 0;
    }

    .svg-background {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.25;
      width: 100%;
      max-width: 790px;
      z-index: 0;
      pointer-events: none;
      filter: drop-shadow(0 0 10px rgba(0,0,0,0.05));
    }


    footer a {
      color: white;
      margin: 0 0.5rem;
      font-size: 1.25rem;
    }
    .whatsapp-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-fixed:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }


    .fade-in {
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .table-horarios {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .table-horarios thead {
      background-color: #406d96;
      color: white;
    }

    .highlight-cell {
      background-color: #e9f2f8 !important;
      font-weight: 500;
    }

    .weekend-row {
      background-color: #f8f9fa !important;
      color: #406d96 !important;
    }

    .alert-info-custom {
      background-color: #e9f2f8;
      border-color: #cfe2f3;
      color: #406d96;
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .navbar-nav {
        margin-top: 1rem;
      }
      
      .nav-item .btn {
        width: 100%;
        margin-bottom: 0.5rem;
      }

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