
.card {
    transition: transform 0.2s;
}



.table {
    transform: scale(0.85);
    transform-origin: top center;
    margin-top: 20px;
}

/* Shrink product table content */
table.table {
    font-size: 0.85rem; /* smaller text */
}

    table.table th,
    table.table td {
        padding: 0.3rem 0.5rem; /* smaller padding */
    }

    table.table a.btn {
        padding: 0.25rem 0.5rem; /* smaller buttons */
        font-size: 0.75rem;
    }


    .card:hover {
        transform: scale(1.03);
    }

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* Body background */
body {
    margin: 0;
  /* overflow: hidden;*/
    background: linear-gradient(to bottom, #90caf9, #e3f2fd);
}

/* Clouds */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    /*background: url("images/clouds.png") repeat-x;*/
    background: url("/images/clouds.jpg") repeat-x;
    background-size: cover;
    opacity: 0.35;
    animation: cloudMove 60s linear infinite;
    z-index: -1; /* Behind content */
    pointer-events: none; /* Allow clicks through */
}

@keyframes cloudMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Rain */
.rain {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Behind content */
}

.raindrop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    animation: rain linear infinite;
}

@keyframes rain {
    from {
        transform: translateY(-100vh);
    }

    to {
        transform: translateY(100vh);
    }
}
/* Shrink Product Table */
.table {
    transform: scale(0.8); /* smaller size */
    transform-origin: top left; /* keeps alignment clean */
    width: 100%; /* prevents layout issues */
}
table.table {
    transform: scale(0.8) !important;
}
table.table {
    border: 5px solid red !important;
}

.banner-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
}


/* UAE background */
.bg-uae {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/Dubai.jpg') center/cover no-repeat;
    z-index: -3; /* ?? Behind everything */
}

    /* Optional dark overlay for readability */
    .bg-uae::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
    }

/* =========================
   FORM LABEL ENHANCEMENTS
   ========================= */

.form-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 6px;
}

/* Improve input visibility */
.form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
}

/* Optional: form container glass effect */
.form-container {
    background: rgba(0, 0, 0, 0.45);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}
.form-container { /* **added** */
    background-color: #ffffff; /* **added** */
    padding: 25px 20px; /* **added** */
    border-radius: 10px; /* **added** */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* **added** */
    transition: transform 0.2s; /* **added** */
}

    .form-container:hover { /* **added** */
        transform: translateY(-3px); /* **added: subtle hover effect** */
    }