.ravi-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.ravi-modal-content {
    background: #fff;
    padding: 20px;
    width: 320px;
    margin: 100px auto;
    border-radius: 8px;
}
..ravi-slider {
    height: 100%;
}

.ravi-slide {
    display: none;
    height: 100%;
}

.ravi-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ravi-apartment-wrapper {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.ravi-left {
    width: 40%;
    position: relative;
    background: #000;
}

.ravi-right {
    width: 60%;
    padding: 20px;
    background: #fff;
}

.ravi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ravi-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.ravi-table td {
    padding: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.ravi-table tr:nth-child(even) {
    background: #fafafa;
}

.ravi-table td:nth-child(6) {
    font-weight: bold;
    color: #111;
}
.ravi-table tr:hover {
    background: #f9fbff;
}
.ravi-reserve-btn {
    background: #0077ff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.ravi-reserve-btn:hover {
    background: #005edb;
    transform: translateY(-1px);
}
.ravi-table thead {
    background: #f8f9fb;
}

.ravi-view-all {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
}