/* Layout styles */
/* Villas Listing */
.villas-listing {
    padding: 40px 0;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.listing-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options span {
    font-size: 14px;
    color: #666;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.pagination a.active {
    background-color: #ff6600;
    color: white;
    border-color: #ff6600;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

/* Map Section */
.map-section {
    margin-top: 40px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

/* Host Information */
.host-section {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.host-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.host-info {
    flex-grow: 1;
}

.host-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.host-since {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.host-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-host-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
}

/* Availability Calendar */
.availability-calendar {
    margin-top: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 14px;
}

.calendar-day.header {
    font-weight: 600;
    background-color: #f8f8f8;
}

.calendar-day.available {
    background-color: #e8f5e9;
    cursor: pointer;
}

.calendar-day.booked {
    background-color: #ffebee;
    color: #999;
    text-decoration: line-through;
}