.search-results-page{
    padding-top: 10vh;
}

.search-top-bar {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.query-highlight {
    color: #81aeda;
    font-style: italic;
    border-bottom: 2px solid #81aeda;
}

.result-count {
    color: #9e9e9e;
    font-size: 1rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 80%;
    margin: 0 auto;
}

.property-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.property-card a {
    text-decoration: none;
    color: inherit;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.prop-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.prop-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prop-details {
    width: 100%;
    padding: 30px 20px 20px 20px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, transparent 100%);
}

.prop-details h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prop-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.prop-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #ffffff;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.prop-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.no-results-container {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.no-results-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.retry-search {
    max-width: 500px;
    margin: 2rem auto 0;
}