/* Admin Dashboard */
body {
    font-family: 'Arial';
    background-color: #f08432 !important;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.dashboard-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 350px;
    text-align: center;
    background-color: #fff;
    box-sizing: border-box;
}

.dashboard-container h1 {
    font-family: 'Sans Serif';
    font-size: 2em; /* More reasonable default size */
    color: #333;
    margin-bottom: 10px;
}

.dashboard-container h2 {
    font-family: 'Arial';
    font-size: 1.5em; /* More reasonable default size */
    color: #555;
    margin-top: 20px;
}

.dashboard-container .nav-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.dashboard-container .nav-items button {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 15px;
    border: none;
    font-weight: 600;
    font-size: 1em; /* More reasonable default size */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 90%; /* Adjust width to fit mobile screens */
    max-width: 200px; /* Ensures it doesn't get too large */
    justify-content: center;
}

.dashboard-container .nav-items button:hover {
    background-color: #F8D568;
}

.dashboard-container .nav-items a {
    text-decoration: none;
    color: #333;
}

.dashboard-container .nav-items img {
    width: 30px; /* Fixed size for desktop */
    height: auto; /* Maintains aspect ratio */
    margin-right: 10px;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) { /* Tablets and small laptops */
    .dashboard-container h1 {
        font-size: 1.75em;
    }

    .dashboard-container h2 {
        font-size: 1.25em;
    }

    .dashboard-container .nav-items button {
        font-size: 0.9em;
    }

    .dashboard-container .nav-items img {
        width: 25px;
    }
}

@media (max-width: 600px) { /* Mobile devices */
    body {
        padding: 10px;
    }

    .dashboard-container {
        padding: 15px;
    }

    .dashboard-container h1 {
        font-size: 1.5em;
    }

    .dashboard-container h2 {
        font-size: 1em;
    }

    .dashboard-container .nav-items button {
        font-size: 0.85em;
    }

    .dashboard-container .nav-items img {
        width: 20px;
    }
}

/* Admin Home Page */
.homepage-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
    background-color: #fff;
    box-sizing: border-box; /* Ensure padding is included in width */
    margin: 20px; /* Add margin for breathing space */
}

.homepage-container h1 {
    font-family: 'Sans Serif';
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.homepage-container h2 {
    font-family: 'Arial';
    font-size: 24px;
    color: #555;
    margin-top: 20px;
}

.homepage-container .nav-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.homepage-container .nav-items button {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 15px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px;
    justify-content: center;
}

.homepage-container .nav-items button:hover {
    background-color: #F8D568;
}

.homepage-container .nav-items a {
    text-decoration: none;
    color: #333;
}

.homepage-container .nav-items img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Media Query for smaller screens */
@media screen and (max-width: 600px) {
    .homepage-container {
        width: 90%; /* Adjust width to take up 90% of the viewport */
        max-width: 400px; /* Maximum width if needed */
        padding: 15px; /* Reduce padding */
    }

    .homepage-container h1 {
        font-size: 28px; /* Decrease font size */
    }

    .homepage-container h2 {
        font-size: 20px; /* Decrease font size */
    }

    .homepage-container .nav-items button {
        width: 120px; /* Adjust button width */
        font-size: 14px; /* Decrease font size */
        padding: 8px 12px; /* Adjust padding */
    }

    .homepage-container .nav-items img {
        width: 24px; /* Decrease image size */
        height: 24px; /* Decrease image size */
    }
}

/* Admin Login Page */
.login-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* width: 280px; */
    width: 100%;
    text-align: center;
    background-color: #fff;
    margin: 20px; /* Add margin for breathing space */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.login-container h1 {
    font-family: 'Sans Serif';
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.login-container .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.login-container .Login-image,
.login-container .Vending_Machine-image {
    height: 50px;
    margin: 0 10px; /* Adjusted margin */
}

.login-container .form input[type="text"],
.login-container .form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px; /* Adjusted margin */
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.login-container .form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: #F8D568;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container .form input[type="submit"]:hover {
    background-color: #FBE28B;
}

.login-container .form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px; /* Adjusted margin */
    text-align: left;
}

/* Media Queries */
@media (max-width: 768px) {
    .login-container {
        width: 90%;
        padding: 15px;
        margin: 10px; /* Adjusted margin */
    }

    .login-container h1 {
        font-size: 28px;
    }

    .login-container .img-container {
        margin-bottom: 15px; /* Adjusted margin */
    }

    .login-container .Login-image,
    .login-container .Vending_Machine-image {
        height: 40px; /* Adjusted image size */
        margin: 0 5px; /* Adjusted margin */
    }

    .login-container .form input[type="text"],
    .login-container .form input[type="password"] {
        margin-bottom: 12px; /* Adjusted margin */
    }

    .login-container .form input[type="submit"] {
        padding: 8px;
        font-size: 14px;
    }

    .login-container .form label {
        margin-bottom: 8px; /* Adjusted margin */
    }
}

@media (max-width: 480px) {
    .login-container {
        width: 100%;
        padding: 12px;
        margin: 10px; /* Adjusted margin */
    }

    .login-container h1 {
        font-size: 24px;
    }

    .login-container .Login-image,
    .login-container .Vending_Machine-image {
        height: 30px; /* Adjusted image size */
        margin: 0 3px; /* Adjusted margin */
    }

    .login-container .form input[type="text"],
    .login-container .form input[type="password"] {
        padding: 8px;
        margin-bottom: 10px; /* Adjusted margin */
    }

    .login-container .form input[type="submit"] {
        padding: 6px;
        font-size: 12px;
    }

    .login-container .form label {
        margin-bottom: 6px; /* Adjusted margin */
    }
}

/* Change Phone No */
body {
    font-size: 16px;
    color: #333;
}

.Update-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    background-color: #fff;
    max-width: 90%; /* Ensure it doesn't exceed the screen width */
    margin: 20px; /* Add some margin for spacing */
}

.Update-container h1 {
    font-size: 1.8em; /* Decrease font size slightly for smaller screens */
    margin-bottom: 15px; /* Reduce margin bottom */
}

.Update-container img {
    height: 25px; /* Decrease image size */
    margin-right: 8px; /* Reduce margin */
}

.Update-container .form-group {
    margin-bottom: 15px; /* Reduce margin bottom */
}

.Update-container .form-group label {
    display: block;
    margin-bottom: 3px; /* Reduce margin bottom */
    font-weight: bold;
}

.Update-container .form-group select,
.Update-container .form-group input {
    width: 100%;
    padding: 8px; /* Reduce padding */
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px; /* Decrease font size */
}

.Update-container .button {
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

/* Media Query for smaller screens */
@media screen and (max-width: 600px) {
    .Update-container {
        width: 90%; /* Adjust width to take up 90% of the viewport */
        max-width: 100%; /* Full width on smaller screens */
        margin: 10px; /* Adjust margin */
        padding: 15px; /* Adjust padding */
    }

    .Update-container h1 {
        font-size: 1.5em; /* Further decrease font size */
        margin-bottom: 10px; /* Further reduce margin */
    }

    .Update-container img {
        height: 20px; /* Further decrease image size */
        margin-right: 6px; /* Further reduce margin */
    }

    .Update-container .form-group label {
        margin-bottom: 2px; /* Further reduce margin bottom */
    }

    .Update-container .form-group select,
    .Update-container .form-group input {
        padding: 6px; /* Further reduce padding */
        font-size: 12px; /* Further decrease font size */
    }

    .Update-container .button {
        padding: 8px 12px; /* Adjust button padding */
        font-size: 14px; /* Decrease font size */
    }
}

/* Contact Us */
.Contact-container {
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    background-color: #fff;
    margin: 10px;
}

.Contact-container h1 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #333;
}

.Contact-container a {
    color: #007bff;
    text-decoration: none;
}

.Contact-container a:hover {
    text-decoration: underline;
}

.Contact-container img {
    size: 50%;
    height: 30px;
    margin-right: 15px;
}

.Contact-container .table-container {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.Contact-container .transparent-table {
    width: 100%;
    border-collapse: collapse;
}

.Contact-container .transparent-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.Contact-container .transparent-table td:first-child {
    font-weight: bold;
    width: 50%;
    text-align: center;
}

.Contact-container .transparent-table td:nth-child(2) {
    text-align: left;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .Contact-container {
        width: 95%;
        padding: 20px;
    }

    .Contact-container h1 {
        font-size: 1.7em;
        margin-bottom: 20px;
    }

    .Contact-container .table-container {
        padding: 20px;
    }

    .Contact-container .transparent-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .Contact-container {
        width: 100%;
        padding: 15px;
    }

    .Contact-container h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .Contact-container .table-container {
        padding: 15px;
    }

    .Contact-container .transparent-table td {
        padding: 6px;
    }
}

/* Customer Feedback Form */
.feedback-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: relative;
    background-color: #fff;
    box-sizing: border-box;
    margin: 20px;
}

.feedback-container h1 {
    font-family: 'Sans Serif';
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.feedback-container .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feedback-container .input-group,
.feedback-container .input-group2 {
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
}

.feedback-container .input-group label,
.feedback-container .input-group2 label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.feedback-container .input-group2 label {
    text-align: center;
}

.feedback-container .input-group input,
.feedback-container .input-group2 input,
.feedback-container .input-group2 textarea {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.feedback-container .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.feedback-container .button {
    border-radius: 10px;
    padding: 10px 15px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    margin-right: 10px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.feedback-container img {
    width: 30px; /* Default image size */
    height: auto;
    margin-right: 10px;
}

.feedback-container .return-back {
    position: absolute;
    top: 20px;
    left: 15px;
}

.feedback-container .rating {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.feedback-container .rating input[type="radio"] {
    display: none;
}

.feedback-container .rating label {
    cursor: pointer;
    display: inline-block;
}

.feedback-container .rating label:before {
    content: "\2605";
    font-size: 24px;
    color: #ddd;
}

.feedback-container .rating input[type="radio"]:checked~label:before {
    color: #FFD700;
}

/* Media Queries */
@media (max-width: 480px) {
    .feedback-container {
        padding: 8px;
    }

    .feedback-container h1 {
        font-size: 20px;
    }

    .feedback-container img {
        width: 20px; /* Adjusted image size for smaller screens */
        height: auto;
        margin-right: 5px; /* Reduced margin for smaller screens */
    }

    .feedback-container .rating label:before {
        font-size: 20px;
    }
}

/* User Dashboard */
.open-door-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #ff6f91, #6a82fb, #00b894);  /* Green background */
    color: white; /* White text color */
    padding: 20px; /* Larger padding */
    font-size: 20px; /* Larger font size */
    border: none; /* Remove border */
    border-radius: 50%; /* Circle shape */
    cursor: pointer; /* Pointer on hover */
    width: 200px; /* Width of the button */
    height: 200px; /* Height of the button */
    transition: background-color 0.3s, transform 0.2s; /* Smooth transitions */
}

.open-door-button:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.button-icon {
    width: 40px; 
    height: 40px; 
    margin-right: 5px; 
}

.button-icon2 {
    width: 220px; 
    height: 200px; 
}

.next_button:hover {
    background-color: #0056b3; 
}

/* User Home Page */
.user_homepage-container {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    height: auto;
    width: 90%;
    max-width: 400px;
    text-align: center;
    background-color: #fff;
    margin: 10px;
}

.user_homepage-container h1 {
    font-family: 'Sans Serif';
    font-weight: 600;
    font-size: 2.25em;
    color: #333;
    margin-bottom: 20px;
}

.user_homepage-container .nav-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.user_homepage-container .nav-items button {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 15px;
    border: none;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px;
    color: black;
}

.user_homepage-container .nav-items button:hover {
    background-color: #FFC107;
}

.user_homepage-container .nav-items a {
    text-decoration: none;
    color: inherit;
}

.user_homepage-container .nav-items img {
    width: 30px;
    height: 30px;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .user_homepage-container {
        padding: 20px;
    }

    .user_homepage-container h1 {
        font-size: 1.75em;
        margin-bottom: 15px;
    }

    .user_homepage-container button {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .user_homepage-container {
        padding: 15px;
    }

    .user_homepage-container h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .user_homepage-container .nav-items {
        gap: 10px;
    }

    .user_homepage-container .nav-items button {
        padding: 6px 10px;
        font-size: 0.85em;
        width: 80%;
    }
}

/* User Login Page */
.user_login-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    background-color: #fff;
    margin: 10px;
}

.user_login-container h1 {
    font-family: 'Sans Serif';
    font-weight: 600;
    font-size: 2.25em;
    color: #333;
    margin-bottom: 20px;
}

.user_login-container .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.user_login-container .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.user_login-container .form-group select,
.user_login-container .form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.user_login-container .button {
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.user_login-container .Login-image {
    height: 50px;
    margin-bottom: 15px;
}

.user_login-container .Vending_Machine-image {
    height: 80px;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .user_login-container {
        padding: 15px;
    }

    .user_login-container h1 {
        font-size: 1.75em;
        margin-bottom: 15px;
    }

    .user_login-container .form-group select,
    .user_login-container .form-group input {
        padding: 8px;
        font-size: 14px;
    }

    .user_login-container .button {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .user_login-containerr {
        padding: 10px;
    }

    .user_login-container h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .user_login-container .form-group select,
    .user_login-container .form-group input {
        padding: 6px;
        font-size: 12px;
    }

    .user_login-container .button {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* OTP Verification Page */
.verify-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 350px;
    text-align: center;
    background-color: #fff;
    margin: 10px;
}

.verify-container h1 {
    font-family: 'Sans Serif';
    font-weight: 600;
    font-size: 2.25em;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.verify-container .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.verify-container .OTP {
    display: inline-block;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    margin-left: 5px;
    width: calc(100% - 22px);
    box-sizing: border-box;
}

.verify-container .button {
    border-radius: 5px;
    padding: 6px 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    vertical-align: middle;
    width: 100%;
    max-width: 120px;
    margin-top: 10px;
}

.verify-container .button:hover {
    background-color: #45a049;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .verify-container {
        padding: 15px;
    }

    .verify-container h1 {
        font-size: 1.75em;
        margin-bottom: 15px;
    }

    .verify-container .OTP {
        padding: 6px;
        font-size: 14px;
    }

    .verify-container .button {
        padding: 5px 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .verify-container {
        padding: 10px;
    }

    .verify-container h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .verify-container .OTP {
        padding: 5px;
        font-size: 12px;
    }

    .verify-container .button {
        padding: 4px 6px;
        font-size: 12px;
    }
}

/* Payment Selection */
.payment-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    background-color: #fff;
    margin: 10px;
}

.payment-container h1 {
    font-family: 'Sans Serif';
    font-weight: 600;
    font-size: 2.25em;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.payment-container .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-container .payment-button {
    border-radius: 10px;
    padding: 10px 30px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 250px;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.payment-container .payment-button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.payment-container .payment-button a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.payment-container .payment-button.TouchNGo_Button {
    background-color: #75B0FE;
    box-shadow: 0 0 3px 3px #75B0FE;
}

.payment-container .payment-button.TouchNGo_Button:hover {
    background-color: #5393FF;
}

.payment-container .payment-button.GrabPay_Button {
    background-color: lightgreen;
    box-shadow: 0 0 3px 3px lightgreen;
}

.payment-container .payment-button.GrabPay_Button:hover {
    background-color: #5CB85C;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .payment-container {
        padding: 15px;
    }

    .payment-container h1 {
        font-size: 1.75em;
        margin-bottom: 15px;
    }

    .payment-container .payment-button {
        padding: 8px 20px;
        font-size: 14px;
        max-width: 200px;
    }

    .payment-container .payment-button img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .payment-container {
        padding: 10px;
    }

    .payment-container h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .payment-container .payment-button {
        padding: 6px 15px;
        font-size: 12px;
        max-width: 150px;
    }

    .payment-container .payment-button img {
        width: 20px;
        height: 20px;
    }
}

/* Sign Up Page */
.container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* max-width: 350px; */
    /* max-width: 400px; */
    text-align: center;
    background-color: #fff;
    margin: 20px;
    box-sizing: border-box;
}

.container h1 {
    /* font-family: 'Sans Serif'; */
    /* font-weight: 600; */
    font-size: 2.0em;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.container .form-group {
    margin-bottom: 20px;
}

.container .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

.container .form-group select,
.container .form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.container .button {
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.container .table-container {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.container .transparent-table {
    width: 100%;
    border-collapse: collapse;
}

.container .transparent-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.container .transparent-table td:first-child {
    font-weight: bold;
    /* width: 50%; */
}

.container .rating {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.container .rating input[type="radio"] {
    display: none;
}

.container .rating label {
    cursor: pointer;
    display: inline-block;
}

.container .rating label:before {
    content: "\2605";
    font-size: 24px;
    color: #ddd;
}

.container .rating input[type="radio"]:checked~label:before {
    color: #FFD700;
}

.container .input-group,
.container .input-group2 {
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
}

.container .input-group label,
.container .input-group2 label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.container .input-group2 label {
    text-align: center;
}

.container .input-group input,
.container .input-group2 input,
.container .input-group2 textarea {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .container {
        font-size: 1.0em;
        padding: 15px;
        max-width: 320px;
    }

    .container h1 {
        margin-bottom: 10px;
    }

    .container .form-group input,
    .container .form-group select {
        padding: 12px;
    }
}

/* Terms and Conditions */
.TNC-container p {
    text-align: left;
    font-size: 12px;
}

.TNC-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 380px;
    height: auto;
    text-align: center;
    background-color: white;
    overflow-y: auto; /* Added to ensure content is scrollable if it overflows */
}

.TNC-container h1 {
    font-family: 'Sans Serif';
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2; /* Adjusted for better spacing */
    color: black;
    margin-bottom: 15px;
}

.TNC-container h2 {
    text-align: left;
}

.TNC-container img {
    height: 30px;
    margin-right: 10px;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .TNC-container {
        padding: 5px;
    }

    .TNC-container h1 {
        font-size: 26px;
    }

    .TNC-container p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .TNC-container {
        padding: 3px;
        width: 95%;
    }

    .TNC-container h1 {
        font-size: 22px;
    }

    .TNC-container p {
        font-size: 11px; /* Adjusted font size for smaller screens */
    }

    .TNC-container h2 {
        font-size: 18px;
    }
}

/* User Profile */
.Profile-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* max-width: 320px; */
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
}

.Profile-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.Profile-container a {
    color: #007bff;
    text-decoration: none;
}

.Profile-container a:hover {
    text-decoration: underline;
}

.Profile-container img {
    size: 50%;
    height: 30px;
    margin-right: 10px;
}

.Profile-container .button {
    border-radius: 5px;
    padding: 10px 15px;
    background-color: white;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.Profile-container .table-container {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.Profile-container .transparent-table {
    width: 100%;
    border-collapse: collapse;
}

.Profile-container .transparent-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.Profile-container .transparent-table td:first-child {
    font-weight: bold;
    width: 50%;
}

.w-100{
    width: 100%;
}

@media (max-width: 768px) {
    .Profile-container {
        padding: 15px;
    }

    .Profile-container h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .Profile-container .button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .Profile-container img {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .Profile-container {
        padding: 10px;
    }

    .Profile-container h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .Profile-container .button {
        padding: 6px 10px;
        font-size: 12px;
    }

    .Profile-container img {
        height: 20px;
    }
}

.red-btn{
    background-color: #ed3c21 !important;
    color: white !important;
}

.orange-btn{
    background-color: #f08432 !important;
    color: white !important;
}

.light-orange-btn{
    background-color: rgb(232, 93, 46) !important;
    color: white !important;
}

.orange-background {
    background-color: #f08432;
}

.light-orange-background {
    background-color: rgb(232, 93, 46) !important;
}
