.container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    background-color: #FEF9F1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.property-table th, .property-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.property-table th {
    background-color:  var(--secondary-color);
    color: #000;
    font-weight: 600;
}

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

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

.property-details {
    font-size: 15px;
    color: #000;
}

.property-distance {
    font-size: 14px;
    color: #000;
}

.property-table a {
    color: #3498db;
    text-decoration: none;
}

.property-table a:hover {
    text-decoration: underline;
    color: #2980b9;
}

.reference-row {
    cursor: pointer;
}

.property-table td:last-child {
    width: 170px;
    max-width: 170px;
}

@media (max-width: 768px) {
    .property-table th, .property-table td {
        padding: 10px;
        font-size: 14px;
    }

    .title {
        font-size: 24px;
    }
    .property-table td:last-child {
        width: auto;
    }
}
