/* ============================================
   Property Details Table & PDF Download Button
   ============================================ */

/* Property Details Table */
.property_details_section {
    margin: 30px 0;
    padding-left: 30px !important;
	padding-right: 30px !important;
}

.property_details_section h4.sc_title {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property_details_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e8e8e8;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.property_details_table tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.property_details_table tr:last-child {
    border-bottom: none;
}

.property_details_table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.property_details_table tr:hover {
    background-color: #f0f4f7;
}

.property_details_table td {
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    vertical-align: middle;
}

.property_details_table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.02);
    border-right: 1px solid #e8e8e8;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.property_details_table td:last-child {
    font-weight: 400;
    color: #444;
    font-size: 15px;
}

/* Status Badge */
.property_status_badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: #4CAF50;
}

.property_status_badge.status-sold {
    background-color: #f44336;
}

.property_status_badge.status-pending {
    background-color: #FF9800;
}

.property_status_badge.status-contingent {
    background-color: #9C27B0;
}

.property_status_badge.status-active {
    background-color: #4CAF50;
}

/* PDF Download Button */
.property_pdf_download_wrap {
    margin: 25px 0 30px;
    text-align: left;
}

.property_pdf_download_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
/*     background: linear-gradient(135deg, #c69c6d 0%, #a07844 100%); */
	background: #EF595A;
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(166, 120, 68, 0.3);
}

.property_pdf_download_btn:hover {
    background: #3E3B45;
    box-shadow: 0 5px 18px rgba(166, 120, 68, 0.45);
    transform: translateY(-2px);
    color: #fff !important;
}

.property_pdf_download_btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(166, 120, 68, 0.3);
}

.property_pdf_download_btn .pdf_icon {
    font-size: 20px;
    line-height: 1;
}

/* Property Status Badge on Listing Page */
.property_listing_status {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: #4CAF50;
}

.property_listing_status.status-sold {
    background-color: #f44336;
}

.property_listing_status.status-pending {
    background-color: #FF9800;
}

.property_listing_status.status-contingent {
    background-color: #9C27B0;
}

.sc_property_image {
    position: relative;
}

/* Divider line between sections */
.property_section_divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 25px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .property_details_table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .property_details_table td:first-child {
        width: 45%;
        font-size: 11px;
    }

    .property_details_table td:last-child {
        font-size: 13px;
    }

    .property_pdf_download_btn {
        padding: 12px 22px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

.sc_property_content {
    padding: 30px !important;
}


