
    /* Color Palette */
    :root {
      --primary: #0d6efd;
      --success: #28a745;
      --danger: #dc3545;
      --background: #f4f4f9;
      --text-dark: #343a40;
      --text-gray: #6c757d;
    }

    * {
      box-sizing: border-box;
    }
   .logo-container {
  width: 50px;   /* عرض الـ div */
  height: 50px;  /* ارتفاع الـ div */
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} 
body {
  background-color: red;
}

    body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Tahoma, sans-serif;
      background: var(--background);
      color: var(--text-dark);
      min-height: 100vh;
      display: flex;
      justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f4f6f8;
            
    }
    h1{
      
    }
input[type="date"],
input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    outline: none;
}

/* ===== Labels ===== */
label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #444;
}

    .booking-container {
      width: 100%;
      max-width: 960px;
      margin: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .header {
      background: var(--primary);
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .header h1 {
      margin: 0;
      font-size: 1.5rem;
      flex-grow: 1;
      min-width: 200px;
    }

    .header .user-info {
      font-size: 0.9rem;
      opacity: 0.9;
      white-space: nowrap;
    }

    .header .controls {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: nowrap;
      margin-left: auto;
    }

    .btn-dashboard,
    .btn-logout {
      padding: 0.5rem 1rem;
      border: none;
      color: #fff;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.25s;
      display: inline-block;
      text-decoration: none;
      user-select: none;
    }

    .btn-dashboard {
      background: #17a2b8;
    }

    .btn-dashboard:hover {
      background: #138496;
    }

    .btn-logout {
      background: #dc3545;
    }

    .btn-logout:hover {
      background: #c82333;
    }

    .content {
      padding: 2rem;
    }

    .content p {
      text-align: center;
      color: var(--text-gray);
      margin-bottom: 1.5rem;
    }

    .day-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .day-tab {
      padding: 0.6rem 1.2rem;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      font-weight: 600;
      user-select: none;
      white-space: nowrap;
    }

    .day-tab:hover {
      background: #0056b3;
      transform: translateY(-2px);
    }

    .day-tab.active {
      background: #003d99;
      transform: none;
      box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    }

    .slot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
    }

    .slot-card {
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      user-select: none;
    }

    .slot-card.available {
      background: #e9f7ef;
      color: var(--success);
    }

    .slot-card.available:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .slot-card.booked {
      background: #f8d7da;
      color: var(--danger);
      cursor: not-allowed;
    }

    .slot-card span {
      font-size: 0.85rem;
      opacity: 0.8;
    }

    @media (max-width: 600px) {
      .day-tabs,
      .slot-grid {
        flex-direction: column;
      }
    }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f0f4f8;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .login-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-width: 420px;
            text-align: center;
        }

        .login-card img {
            max-width: 140px;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 24px;
            margin-bottom: 30px;
            color: #333;
        }

        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 18px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
        }

        input[type="checkbox"] {
            margin-right: 8px;
        }

        .remember-label {
            font-size: 14px;
            color: #555;
        }

        .btn-login {
            width: 100%;
            background-color: #007bff;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.25s ease;
        }

        .btn-login:hover {
            background-color: #0056b3;
        }

        .forgot-link {
            display: block;
            margin-top: 15px;
            font-size: 13px;
            color: #007bff;
            text-decoration: none;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        .error-text {
            font-size: 13px;
            color: red;
            margin-bottom: 10px;
        }
        .navbar-brand img {
            height: 50px;
        }

        .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
        }

        .carousel-item img {
            object-fit: cover;
            height: 80vh;
        }

        @media (max-width: 768px) {
            .carousel-item img {
                height: 60vh;
            }
            .carousel-caption h5 {
                font-size: 1.25rem;
            }
            .carousel-caption p {
                font-size: 0.95rem;
            }
            body {
    /* Optional: Customize body styles */
    font-family: 'Inter', sans-serif; /* Use a modern font */
}

input[type="date"],
input[type="text"] {
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #3b82f6; /* Tailwind blue-500 */
    box-shadow: 0 0 0 1px rgba(59, 130, 247, 0.5); /* Tailwind blue-500 with opacity */
}

 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f4f6f9;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 500px;
            margin: 50px auto;
            padding: 30px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-bottom: 6px;
            font-weight: 600;
            color: #444;
        }

        input[type="text"],
        input[type="time"],
        input[type="number"] {
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }

        input[type="text"]:focus,
        input[type="time"]:focus,
        input[type="number"]:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
        }

        button {
            background-color: #007bff;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.2s ease-in-out;
        }

        button:hover {
            background-color: #0056b3;
        }

        .terms {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .terms input {
            margin-right: 10px;
        }
        #terms-content::-webkit-scrollbar {
    width: 6px;
}
#terms-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}



        }
    