.ret-table-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2E5951;
    overflow-x: auto;
}

.ret-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ret-table th, .ret-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ret-table th {
    background-color: #F8F5F0;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ret-table tr:last-child td {
    border-bottom: none;
}

.ret-table tr:hover {
    background-color: #fdfcfb;
}

/* Status Indicator Styles */
.ret-status {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}

.ret-status-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Status Colors */
.ret-status-laisvas .ret-status-circle {
    background-color: #5cb85c;
}
.ret-status-laisvas {
    color: #5cb85c;
}

.ret-status-rezervuotas .ret-status-circle {
    background-color: #f0ad4e;
}
.ret-status-rezervuotas {
    color: #f0ad4e;
}

.ret-status-parduotas .ret-status-circle {
    background-color: #d9534f;
}
.ret-status-parduotas {
    color: #d9534f;
}

/* Show More Button */
.ret-show-more-container {
    text-align: center;
    margin-top: 20px;
}

.ret-show-more-btn {
    display: none; /* Hidden by default, shown by JS if needed */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .ret-table th, .ret-table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}