
.property-category .user-info span img,
.property-category .user-info a img {
    object-fit: cover;
    object-position: top;
}

.btn-google {
    background-color: #db4437;
    /* Google red */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    transition: background-color 0.3s;
}

.btn-google:hover {
    background-color: #c13524;
    /* Darker red on hover */
}

.btn-google i {
    margin-right: 5px;
    /* Space between icon and text */
}

.blog-card .blog-img {
    height: 250px;
}

.round-button {
    width: 50px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #eaeaea;
}

.doc-img {
    position: relative;
}

.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.badge {
    background-color: transparent;
    color: #333;
    padding: 0;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 5px;
    display: inline-flex;
}

.property-badges .badge-moss {
    background-color: #08A1DC;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
}

.circular-btn {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    line-height: 1.5;
}

.circular-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.rented-text {
    color: #08A1DC;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-10deg);
    font-family: 'Courier New', Courier, monospace;
}

.departure-date {
    color: #08A1DC;
    font-size: 1.2rem;
    font-family: 'Courier New', Courier, monospace;
    transform: rotate(-10deg);
}

.modal-content {
    background: rgba(255, 255, 255, 0.75);
    /* Translucent white background */
    backdrop-filter: blur(10px);
    /* Ice glass effect */
    border-radius: 10px;
    /* Rounded corners */
    padding: 20px;
    border: none;
}

.modal-header,
.modal-footer {
    border: none;
    /* Remove default borders */
}

.modal-title {
    font-weight: bold;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark backdrop */
}

.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: row;
}


.property-badges .badge-moss {
    background-color: #08A1DC;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
}

.btn-with-badge {
    position: relative;
    display: inline-block;
}

.unread-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 4px 0px;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.shadowed-text {
    position: relative;
    display: inline-block;
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.rented-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notification-bell {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 24px;
    color: #08A1DC;
    margin: 0 20px;
}

.notification-bell .badge {
    position: absolute;
    top: -13px;
    right: -15px;
    background-color: rgb(230, 68, 74);
    color: white;
    border-radius: 50%;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #fff;
    width: 350px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    visibility: hidden;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #08A1DC;
    border-bottom: 1px solid #eaeaea;
    font-size: 14px;
    font-weight: bold;
}

.dropdown-menu .dropdown-header a {
    color: #08A1DC;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-menu .dropdown-header a i {
    margin-right: 5px;
}

.dropdown-menu .notification-item {
    background-color: #08A1DC;
    color: white;
    margin: 8px 10px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dropdown-menu .notification-item:hover {
    background-color: #066f9b;
    transform: translateX(5px);
}

.dropdown-menu .notification-item .date {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

.dropdown-menu .dropdown-footer {
    padding: 10px 20px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
}

.dropdown-menu .dropdown-footer a {
    color: #08A1DC;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .dropdown-footer a i {
    margin-left: 5px;
}

#cart-count {
    position: absolute;
    top: -13px;
    right: -15px;
    background-color: rgb(230, 68, 74);
    color: white;
    border-radius: 50%;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.user-profile .user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.user-profile .user-name {
    font-weight: 600;
    color: #08A1DC;
}

.user-profile .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
    left: auto;
    transform: translateX(-10%);
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 10px;
    min-width: 260px;
    background-color: #fff;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.user-profile:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-10%);
}

.user-profile .dropdown-menu li a {
    padding: 8px 12px;
    display: block;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.user-profile .dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

.user-profile .dropdown-menu .active a {
    font-weight: 700;
    color: #007bff;
}

.user-profile .logout-btn a {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.user-profile .logout-btn i {
    margin-right: 5px;
}

.new-property-btn {
    margin-right: 20px;
}

#cart-btn .badge {
    position: absolute;
    top: -13px;
    right: -15px;
    background-color: rgb(230, 68, 74);
    color: white;
    border-radius: 50%;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-fluid {
    padding: 20px;
    max-width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    margin: 0 auto;
    table-layout: auto;
}

.table td,
.table th {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    word-wrap: break-word;
}

.table thead th {
    background-color: #fbfeff;
    color: #17a6df;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-bottom: 2px solid #ddd;
}

.table thead th.sorted-asc::after,
.table thead th.sorted-desc::after {
    content: '\f0dc';
    font-family: FontAwesome;
    margin-left: 8px;
}

.table thead th.sorted-desc::after {
    transform: rotate(180deg);
}

.features-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-bubble {
    display: flex;
    align-items: center;
    background-color: #bacde0;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.9rem;
}

.feature-bubble i {
    margin-right: 5px;
}

.custom-btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: var(--btn-bg-color, #ffc107);
    color: var(--btn-text-color, #f7f9fb);
    margin: 0.25rem;
    position: relative;
    overflow: visible;
}

.custom-btn:hover {
    background-color: var(--btn-hover-bg-color, #e0a800);
    color: var(--btn-hover-text-color, #fff);
}

.custom-btn.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.badge-danger {
    background-color: rgb(230, 68, 74);
    color: white;
    position: absolute;
    top: -13px;
    right: -15px;
    min-width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-check {
    margin-right: 1rem;
    margin-bottom: 1rem;
    flex: 1 0 23%;
}

.form-check-label {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 0.5rem;
}


.button-group {
    display: flex;
    gap: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.modal-body .form-check {
    margin-bottom: 10px;
}

.modal-body .row {
    display: flex;
    flex-wrap: wrap;
}

.modal-body .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.end-0 {
    right: 0;
}

.accordion-button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.accordion-body {
    padding: 1rem;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.feature-item i {
    font-size: 1.2rem;
    color: #08A1DC;
}

.accept-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #08A1DC;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.reject-btn:hover {
    background-color: #c73636;
}

.reject-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #c73636;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.add-condition-btn:hover {
    background-color: #08A1DC;
}

.add-condition-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #08A1DC;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.card.booking-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row; /* Ensures left and right sections are side by side */
    overflow: hidden;
    height: auto; /* Adjust height automatically based on content */
}

.card.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 6px 6px rgba(0, 0, 0, 0.08);
}

.card-left {
    flex: 0 0 370px; 
    max-width: 370px;
    height: 350px; 
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.card-right {
    flex: 1; 
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}


.card-title {
    color: #08A1DC;
    text-align: left;
    margin-bottom: 15px;
}

.info-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.vendor-info,
.booking-info {
    width: 48%;
}

.action-buttons .btn {
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.action-buttons .btn.shadow-hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-buttons .btn.me-2 {
    margin-right: 0.5rem;
}

.btn-outline-custom {
    color: #08A1DC !important;
    border-color: #08A1DC !important;
    background-color: transparent !important;
}

.btn-outline-custom:hover {
    background-color: #08A1DC !important;
    color: white !important;
}

.m-3 {
    margin: 1rem;
}

.action-buttons .btn.shadow-hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom:active,
.btn-outline-custom:focus {
    background-color: #08A1DC !important;
    color: white !important;
    border-color: #08A1DC !important;
    box-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}


.product-custom .product-amount {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

.product-custom .product-amount span {
    font-weight: 600;
    font-size: 24px;
    color: #FFF;
}

@media (max-width: 991.98px) {
    .product-custom .product-amount span {
        font-size: 20px;
    }
}

@media (max-width: 767.78px) {
    .product-custom .product-amount span {
        font-size: 18px;
    }
}




/* General Styles for Share Links */
.sidebar-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.sidebar-card-title h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.share-links ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

.share-links li {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.share-links li:hover {
    transform: scale(1.1);
}

.share-links a {
    color: #fff;
    /* Set icon color to white */
    font-size: 30px;
    text-decoration: none;
}

/* Specific Background Colors for Links */
.copy-link-icon {
    background-color: #6c757d;
    /* Gray for copy */
}

.ins-icon {
    background-color: #c13584;
    /* Instagram color */
}

.whatsapp-icon {
    background-color: #25D366;
    /* WhatsApp green */
}

.email-icon {
    background-color: #007bff;
    /* Blue for email */
}

/* Hover Effects */
.copy-link-icon:hover {
    background-color: #343a40;
    /* Darker gray */
}

.ins-icon:hover {
    background-color: #e1306c;
    /* Darker Instagram color */
}

.whatsapp-icon:hover {
    background-color: #128c7e;
    /* Darker WhatsApp green */
}

.email-icon:hover {
    background-color: #0056b3;
    /* Darker blue */
}

.tooltip-inner {
    background-color: #08A1DC !important;
    color: #fff;
    /* Optional: change text color to white */
}



.img-container {
    position: relative;
    width: 100%;
    height: 353px;
    overflow: hidden;
}

.img-container-thumbnail {
    height: 200px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .img-container {
        height: 200px;
    }

    .img-container-thumbnail {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .img-container {
        height: 150px;
    }

    .img-container-thumbnail {
        height: 100px;
    }
}



.btn-modern {
    display: inline-block;
    background-color: rgb(93, 199, 153);
    color: #fff;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    margin: 3px; 
}

@media (max-width: 1024px) {
    .btn-modern {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .btn-modern {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .btn-modern {
        font-size: 10px;
        padding: 4px 8px;
    }
}

.btn-modern:hover {
    background-color: rgb(35, 148, 99);
    color: #fff;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-modern:active {
    background-color: #6CA975;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.btn-modern:focus {
    outline: none;
    box-shadow: 0px 0px 6px rgba(147, 199, 153, 0.5);
}

.btn-modern.disabled,
.btn-modern:disabled {
    background-color: #d6e6d6;
    color: #a1a1a1;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-blue {
    background-color: #08A1DC;
    color: #fff;
}

.btn-blue:hover {
    background-color: #357ABD;
    color: #fff;
}

.btn-blue:active {
    background-color: #2C5C97;
}

.btn-blue:focus {
    box-shadow: 0px 0px 6px rgb(35, 112, 199);
}

.btn-red {
    background-color: #E94A4A;
    color: #fff;
    /* Ensure text is white */
}

.btn-red:hover {
    background-color: #C43838;
    color: #fff;
    /* Keep text color white on hover */
}

.btn-red:active {
    background-color: #A32E2E;
}

.btn-red:focus {
    box-shadow: 0px 0px 6px rgba(233, 74, 74, 0.5);
}

.btn-yellow {
    background-color: #F4C542;
    color: #fff;
    /* Ensure text is white */
}

.btn-yellow:hover {
    background-color: #D9A735;
    color: #fff;
    /* Keep text color white on hover */
}

.btn-yellow:active {
    background-color: #B3872A;
}

.btn-yellow:focus {
    box-shadow: 0px 0px 6px rgba(244, 197, 66, 0.5);
}

.btn-purple {
    background-color: #6A60F5;
    color: #fff;
    /* Ensure text is white */
}

.btn-purple:hover {
    background-color: #5246f0;
    color: #fff;
    /* Keep text color white on hover */
}

.btn-purple:active {
    background-color: #6A60F5;
}

.btn-purple:focus {
    box-shadow: 0px 0px 6px rgba(106, 96, 245, 0.5);
}

.btn-gray {
    background-color: #6E757C;
    color: #fff;
    /* Ensure text is white */
}

.btn-gray:hover {
    background-color: #3e464e;
    color: #fff;
    /* Keep text color white on hover */
}

.btn-gray:active {
    background-color: #6E757C;
}

.btn-gray:focus {
    box-shadow: 0px 0px 6px rgba(110, 117, 124, 0.5);
}


.disabled-link {
    pointer-events: none; 
    text-decoration: none; 
    color: inherit; 
}

.disabled-link img {
    opacity: 1; 
}

