/*^ SINGIN,HOME,SIGNUP,Signup{Landlord} PAGES:(selecter) */
.logo-dark {
    margin: 0 auto;
    padding: 5px 0 20px;
}

.login-wrapper .loginbox {
    margin: 0;
    padding: 5px 0;
    max-width: 600px;
    height: 300px;
}

.btn-size {
    padding: 5px 2px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0px !important;
}

.login-body .log-header {
    padding: 10px 0 0;
}

.login-wrapper {
    height: 100% !important;
}

.card h3 {
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    font-size: 16px;
}

.login-wrapper .loginbox .login-auth .dont-have {
    margin: 10px 0px 0px;
}

/*^ SINGIN,HOME,SIGNUP ,Signup{Landlord} PAGES:(media query) */

@media (max-width: 768px) {
    .logo-dark {
        padding-bottom: 10px;
        margin-bottom: 20px;
        padding-top: 30px;
    }

    .loginbox {
        padding: 20px;
    }

    .log-header img {
        width: 200px;
        /* Reduce logo size on smaller screens */
    }

    .btn-size {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 752px) {
    .banner-content p {
        font-size: 20px;
    }

    .login-wrapper .loginbox .login-auth .login-auth-wrap h1 {
        width: 100%;
    }
}

@media (max-width: 424px) {
    .land-lord-title {
        white-space: nowrap;
        text-align: center;
        display: inline-block;
    }

    .card {
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {
    .log-header {
        margin-bottom: 10px;
        /* Reduce the bottom margin */
    }

    .login-wrapper .loginbox {
        margin: 0;
        width: 800px;
        height: 400px;
        padding: 40px 0px;
    }

    .login-wrapper .loginbox .login-auth .login-auth-wrap h1 {
        font-size: 28px;
        margin: 0 0 30px;
    }
}

@media (min-width: 993px) {
    .log-header {
        margin-bottom: 40px;
        /* Default margin for larger screens */
    }

    .loginbox {
        padding: 40px;
    }

    .btn-size {
        padding: 10px 30px;
        font-size: 18px;
    }
}

/*update greate blade */

.property-tabs .prop-tab {
    padding: 0;
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.property-tabs .prop-tab li {
    padding: 0;
    text-align: center;
}

.property-tabs .prop-tab li a {
    display: block;
    padding: 12px 8px;
    background-color: #f1f1f1;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.property-tabs .prop-tab li a:hover {
    background-color: #08a0dca3;
    color: #fff;
    transform: scale(1.05);
}

.property-tabs .prop-tab li a.active {
    background-color: #08a1dc;
    color: #fff;
}

.property-info h4 {
    font-weight: 600;
}

.property-info p {
    color: #6c757d;
}

.add-property-wrap {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border-radius: 5px;
    padding: 10px;
}

.form-control::placeholder {
    color: #bbb;
}

.form-select:required:invalid {
    color: #6c757d;
}

#descriptionTextarea {
    height: 150px;
    /* Fixed height */
    overflow-y: auto;
    /* Enable vertical scrolling */
    max-height: 200px;
    /* Optional: maximum height */
}

/* .image-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.image-gallery li {
  margin: 5px;
}

.image-gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
} */

@media (min-width: 1200px) {
    .property-tabs .prop-tab li {
        flex: 0 0 23%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .property-tabs .prop-tab li {
        flex: 0 0 30%;
    }
}

@media (max-width: 767px) {
    .property-tabs .prop-tab li {
        flex: 0 0 100%;
    }
}

/*** Modal */
.image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-container img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.remove-image {
    color: #ff0000;
    position: absolute;
    top: 5px;
    right: 5px;
    background: white;
    padding: 2px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.modal-content {
    background: linear-gradient(135deg, #f7f9fc, #e2ecf8);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-close {
    color: #aaa;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
    color: #555;
}

.modal-title {
    font-size: 1.5rem;
}

#progressText {
    font-size: 0.9rem;
}

.box-outliner {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    text-align: left;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
}

.box-outliner p {
    margin-bottom: 8px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    
    text-align: left;
}

.image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-container {
    border: 1px solid #dee2e6;
    padding: 5px;
    border-radius: 4px;
}

/*** End Modal */

/*^ InqAndRequetsPage */
.sender {
    background-color: #08a1dc;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 15px;
    text-align: left;
    max-width: 75%;
    align-self: flex-end;
}

.receiver {
    background-color: #f1f1f1;
    color: #333;
    padding: 10px;
    margin: 5px 0;
    border-radius: 15px;
    text-align: left;
    max-width: 75%;
    align-self: flex-start;
}

#chat-box {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.card-header {
    font-weight: bold;
    font-size: 1.2em;
}

.form-group textarea {
    resize: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .sender,
    .receiver {
        max-width: 100%;
    }
}

.property-category {
    gap: 1rem;
}

.user-info .avatar {
    width: 48px;
    height: 48px;
}


.footer-about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-logo {
    width: 250x;
    height: auto;
    margin-bottom: 15px;
}


.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-content .copyright,
.footer-bottom-content .footer-links {
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
    }
}


/* latest updates  */

/* test2 description */
.description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.description.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.btn-link {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

/*! loader */

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* home page : dropdown-submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 50%;
    margin-left: 0.1rem;
    margin-top: -0.1rem;
}

.toggle-btn {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-btn input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-btn .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-btn .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

.toggle-btn input:checked+.slider {
    background-color: #007bff;
}

.toggle-btn input:checked+.slider:before {
    transform: translateX(26px);
}

.toggle-btn .slider-text {
    font-size: 14px;
    color: #555;
}

.oval-button {
    border-radius: 50px;
    padding: 10px 20px;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.oval-button i,
.oval-button span {
    font-size: 14px;
}

.footer {
    background-color: #ffffff; /* Change background to white */
    color: #000000; /* Ensure default text is black for contrast */
}

.footer-bottom {
    background-color: #08a1dc; /* Change footer bottom background to white */
    color: #000000; /* Default text color in footer bottom */
}
.footer-links li {
    margin: 0;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #08a0dc78;
}

.footer .footer-top .footer-content-heading h4 {
    color: #08a1dc;
    font-size: 22px;
    margin-bottom: 30px;
}

.footer-widget-list ul li a {
    color: #08a1dc;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.property-card {
    position: relative;
    margin-bottom: 20px;
}

.banner-section {
    position: relative;
    padding-top: 10px;
    /* background-image: url(./imgs/2149038355-1.jpg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    .oval-button {
        display: inline-block;
        padding: 5px 10px;
        /* Adjust padding */
        border-radius: 15px;
        /* Rounded corners */
        background-color: transparent;
        /* Remove background color */
        color: #fff;
        /* Default text color */
        font-size: 14px;
        /* Font size */
        font-weight: bold;
        /* Make text thicker */
        cursor: default;
        /* Default cursor */
        text-align: center;
        /* Centered text */
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Available State (Blue) */
    .available {
        border: 2px solid #08A1DC;
        /* Blue border */
        color: #08A1DC;
        /* Blue text */
    }

    .available:hover {
        background-color: #e7f1ff;
        /* Light blue hover effect */
    }

    /* Not Available State (True Red) */
    .not-available {
        border: 2px solid #e50000;
        /* True red border */
        color: #e50000;
        /* True red text */
    }

    .not-available:hover {
        background-color: #ffe0e0;
        /* Light red hover effect */
    }