﻿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;
}

.banner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

    .banner img {
        width: 100%;
        height: auto;
    }
.carousel-item img {
    width: 100%;
    height: 1000px; /* Set the desired height */
    object-fit: inherit; /* Maintain aspect ratio and cover the area */
}
body {
    background-color: lightgray;
}
.bold-label {
    font-weight: bold;
}
.custom-dropdown {
    background-color: #f8f9fa; /* Light gray background */
    color: #495057; /* Dark gray text */
    border: 2px solid #007bff; /* Blue border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Add padding */
    font-size: 1rem; /* Adjust font size */
}

    .custom-dropdown option {
        background-color: #ffffff; /* White background for options */
        color: #000000; /* Black text for options */
    }

.dropdown-with-arrow {
    position: relative;
}
.dropdown-with-arrow select {
    appearance: none; /* Removes default arrow */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background-color: #ffffff; /* Ensures white background */
    color: #000000; /* Ensures text is visible */
    border: 1px solid #ced4da; /* Matches Bootstrap's default border */
    border-radius: 4px; /* Optional: Adds rounded corners */
    padding: 8px 12px; /* Adds padding for better appearance */
    width: 100%; /* Ensures it spans the container */
    box-shadow: none; /* Removes any unwanted shadow */
}

.dropdown-with-arrow::after {
    content: '▼'; /* Unicode for down arrow */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevents interaction with the arrow */
    font-size: 12px;
    color: #333;
}
.otp-input {
    width: 150px;
    margin: auto;
    border: 3px solid #73AD21;
    padding: 10px;
    text-align: center; /* Centers the text inside the input field */
}
/* Smaller button styling */
.small-btn {
    padding: 2px 6px; /* Reduce padding */
    font-size: 0.85rem; /* Reduce font size */
    line-height: 1.2; /* Adjust line height */
}
/* wwwroot/css/site.css */
@media (max-width: 768px) {
    .content-area {
        padding: 16px;
    }

    .site-header {
        padding: 20px 0 10px 0;
    }
}

.landing-hero {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 32px;
}

.testimonial-section blockquote {
    background: #f8f9fa;
    border-left: 5px solid #0073aa;
    padding: 24px;
    border-radius: 8px;
    font-style: italic;
}
#logout.nav-link {
    background: none !important;
    border: none !important;
    cursor: pointer;
    color: #fff;
    text-align: left;
    display: flex;
    align-items: center;
}

    #logout.nav-link:hover, #logout.nav-link:focus {
        color: #0d6efd;
        text-decoration: underline;
        background: none;
    }


.wp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #ccd0d4;
    font-size: 1rem;
}

.wp-table th, .wp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e4e7;
    vertical-align: middle;
}

.wp-table th {
    background: #f6f7f7;
    color: #23282d;
    font-weight: 600;
    border-top: 1px solid #ccd0d4;
}

.wp-table tbody tr:nth-child(even) {
    background: #fcfcfc;
}

.wp-table tbody tr:hover {
    background: #f1f1f1;
}

.wp-table td {
    color: #444;
}

input[readonly], textarea[readonly] {
    background-color: #e9ecef !important; /* Bootstrap's gray-200 */
    color: #495057;
    border: 1px solid #ced4da;
}
body, .card-header, .card-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Add to site.css */
.profile-photo-tile img {
    transition: box-shadow 0.2s;
}

    .profile-photo-tile img:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

/*rating star*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    min-width: 320px;
    text-align: center;
}

.star-rating .star {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

    .star-rating .star.selected,
    .star-rating .star:hover,
    .star-rating .star:hover ~ .star {
        color: #ffc107;
    }
