/* Form container */

.ps-lg-3 {
    padding: 20px;
    border-radius: 10px;
}


/* Form title */

.title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}


/* Form labels */

.form-label {
    font-weight: 500;
    color: #555;
}


/* Form inputs */

.form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    background-color: rgba(255, 255, 255, 1);
}


/* Submit button */

.btn-primary {
    display: inline-block !important;
    padding: 10px 20px !important;
    background-color: #ff9900 !important;
    color: #fff !important;
    border: 2px solid #ff9900 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out !important;
    cursor: pointer !important;
}

.btn-primary:hover {
    background-color: #fff !important;
    color: #333 !important;
}


/* Responsive adjustments */

@media (max-width: 576px) {
    .title {
        font-size: 20px;
    }
    .form-control {
        padding: 8px 0;
    }
    .btn-primary {
        font-size: 14px;
        padding: 10px 18px;
    }
}


/* Add this CSS to your existing stylesheet or in a separate CSS file */


/* Style the table */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}


/* Style table header */

th {
    background-color: #f2f2f2;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid #ddd;
}


/* Style table rows */

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e0e0e0;
}


/* Style table cells */

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}


/* 
h4 {
    font-size: 24px;
    margin-top: 20px;
    color: #333;
    text-transform: uppercase;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}*/

.form-control[readonly] {
    opacity: 0.6;
}


/* Common styles for .col-lg-8 and .image-box */

.image-box {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    /* Adjust the margin as needed */
    width: 260px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.image-box:last-child {
    margin-right: 0;
    /* Remove the margin from the last image-box to prevent extra spacing */
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-box h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


/* Responsive styles for .col-lg-8 and .image-box */

@media screen and (max-width: 767px) {
    .col-lg-8 {
        width: 100% !important;
    }
    .image-box {
        width: 100%;
        margin-right: 0;
        /* Remove the margin on smaller screens */
    }
    .image-box h4 {
        font-size: 12px;
    }
}


/* Beautifill and Attractive Styles */

.beautifill {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.beautifill:hover {
    transform: scale(1.1);
}

.attractive {
    filter: grayscale(50%);
    transition: filter 0.3s ease-in-out;
}

.attractive:hover {
    filter: none;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #f3b623 !important;
}