.d-none {
    display: none !important;
}

.container-table th {
    text-align: center;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    /* Enable horizontal scroll */
}

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

.container-table{
    display: none !important;
}

.property-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 0;
}

.property-table thead th {
    background-color: #f8f9fa;
    border: none;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 1rem 0.75rem;
    text-align: center;
    vertical-align: middle;
}

.table-property{
    background-color: #eef3ffff !important;
}

.property-table tbody tr {
    border: none;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.property-table tbody tr:hover {
    background-color: #f8f9fa;
}

.property-table tbody tr:last-child {
    border-bottom: none;
}

.property-table tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border: none;
    color: #212529;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Status Icon */
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* Property Image */
.property-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/*Details View CSS*/
/* Main Container */
.property-listing-main-wrapper-container {
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Header Navigation */
.property-logo-brand-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.property-next-logo-text-element {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Main Content Grid */
.property-content-layout-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.navigation-tab {
    max-width: 200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

/* Left Column Styles */
.property-details-left-column-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.property-hero-image-display-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.property-main-hero-image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-main-hero-image-element:hover {
    transform: scale(1.05);
}

/* Property Basic Info */
.property-basic-info-section-wrapper {
    padding: 1.5rem;
}

.property-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.property-title-heading-main {
    font-size: 1.75rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.property-price-display-wrapper {
    margin-bottom: 1rem;
}

.property-price-amount-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
}

.property-location-address-container {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Property Stats */
.property-stats-icons-row-container {
    display: flex;
    gap: 2rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.property-stat-item-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-stat-icon-element {
    font-size: 1.2rem;
}

.property-stat-number-text {
    font-weight: bold;
    color: #2c3e50;
}

/* Property Details Table */
.property-details-table-section-wrapper {
    padding: 1.5rem;
}

.property-details-table-container {
    display: grid;
    gap: 0.75rem;
}

.property-detail-row-wrapper {
    display: flex;
    grid-template-columns: 1fr 1fr;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.property-detail-label-cell {
    color: #6c757d;
    font-weight: 500;
    width: 30%;
}

.property-detail-value-cell {
    color: #2c3e50;
    font-weight: 600;
    width: 70%;
}

/* Property Description */
.property-description-section-wrapper {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.property-description-heading-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.property-description-paragraph-text {
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.property-features-list-container {
    list-style: none;
    margin-top: 1rem;
}

.property-feature-list-item {
    color: #495057;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Right Sidebar */
.property-agent-sidebar-column-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.property-agent-card-container-wrapper {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.property-agent-profile-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.property-agent-avatar-image-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.property-agent-profile-image-element {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.property-agent-name-heading-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.property-agent-title-subtitle-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.property-contact-agent-cta-button {
    width: 100%;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.property-agent-contact-button-section {
    text-align: center
}

.property-contact-agent-cta-button:hover {
    background-color: #218838;
}

.similar-property-title h5 {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    /* semi‑bold */
    line-height: 1.2;
}

.similar-property-title p {
    text-align: right;
    text-decoration: underline;
    cursor: pointer;
}

.similar-property-title {
    display: flex;
    justify-content: space-between;
    /* Put them on opposite sides */
    align-items: center;
}

.no-similar-properties {
    display: flex;
    align-items: center !important;
}

.btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.manage-agent-property {
    padding: 2em;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {

    .property-content-layout-grid-container,
    .navigation-tab {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .property-agent-sidebar-column-wrapper {
        position: static;
        order: -1;
    }
}

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

    .property-content-layout-grid-container,
    .navigation-tab {
        padding: 0.5rem;
        gap: 1rem;
    }

    .property-hero-image-display-container {
        height: 250px;
    }

    .property-title-heading-main {
        font-size: 1.5rem;
    }

    .property-price-amount-text {
        font-size: 1.25rem;
    }

    .property-stats-icons-row-container {
        gap: 1rem;
        justify-content: space-around;
    }

    .property-detail-row-wrapper {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .property-basic-info-section-wrapper,
    .property-details-table-section-wrapper,
    .property-description-section-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .property-listing-main-wrapper-container {
        padding-top: 100px;
    }

    .container-grid-details {
        padding: 2rem;
    }

    .similar-property-title h5 {
        padding-bottom: 10px;
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .property-next-logo-text-element {
        font-size: 1.25rem;
    }

    .property-hero-image-display-container {
        height: 200px;
    }

    .property-title-heading-main {
        font-size: 1.25rem;
    }

    .property-stats-icons-row-container {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .property-stat-item-wrapper {
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f3f4;
    }

    .similar-property-title h5 {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .similar-property-title p {
        padding-top: 5px;
    }
}

.form-label-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-label-block label {
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
    font-size: 20px;
}

.listing-count {
    font-size: 13px;
    color: #555;
    margin-top: 2px;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: grey;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    margin-left: 5px;
    vertical-align: middle;
    position: relative;
    font-family: Arial, sans-serif;
}

.info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 999;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

/* Action Button */
.action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    background-color: #1e293b;
    /* Dark blue-gray */
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
    background-color: #334155;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.action-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dots-icon {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.action-button:hover .dropdown-arrow {
    transform: translateY(1px);
}

.dots-icon-alt {
    display: inline-flex;
    gap: 2px;
    color: white;
}

.dots-icon {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
}

.dot {
    width: 3px;
    height: 3px;
    background-color: currentColor;
    border-radius: 50%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    min-width: 120px;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

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

#action-delete {
    cursor: pointer;
}


.property-form-view .control-group br,
.property-details .control-group br{
    display:none;
}
.property-form-view .control-group label,
.property-details .control-group label {
    text-align:left;
}