/* ===== ADDITIONS TO EXISTING CSS ===== */

/* Renew date */
.condo-renew {
    font-size: 12px;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Status colors */
.status-active {
    background: #2ecc71;
    color: white;
}

.status-ended {
    background: #e74c3c;
    color: white;
}

/* Rates label */
.rates-label {
    font-weight: bold;
    margin-right: 5px;
}

/* Action links */
.condo-action-link {
    background: #ecf0f1;
    border: 1px solid #ccc;
    padding: 6px 10px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    font-size: 13px;
    display: inline-block;
}

.condo-action-link:hover {
    background: #d5dbdb;
}

/* Save Rate button */
.save-rates {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

.save-rates:hover {
    background: #1a252f;
}

/* Row layout */
.my-condo-row {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.my-condo-line1 {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.my-condo-rates {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.my-condo-rates input {
    width: 80px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.my-condo-rates label {
    font-size: 13px;
    color: #555;
}

.my-condo-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.my-condo-actions button,
.my-condo-actions a {
    margin-right: 0;
}


/* ===== MY CONDO ROW ===== */
.my-condo-row {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.my-condo-line1 {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

/* ===== STATUS ===== */
.condo-status {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: #2ecc71;
    color: #fff;
}

.status-ended {
    background: #e74c3c;
    color: #fff;
}

/* ===== RENEW DATE ===== */
.condo-renew {
    font-size: 12px;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 2px 10px;
    border-radius: 4px;
}

/* ===== SERVICES ===== */
.my-condo-services {
    margin: 4px 0 6px 0;
    font-size: 13px;
    color: #555;
}

.services-label {
    font-weight: 600;
    color: #333;
}

.services-list {
    color: #555;
    word-wrap: break-word;
}

/* ===== RATES ===== */
.my-condo-rates {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 6px 0;
    flex-wrap: wrap;
}

.my-condo-rates label {
    font-size: 13px;
    color: #555;
}

.my-condo-rates input {
    width: 80px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.rates-label {
    font-weight: 600;
    color: #333;
}

/* ===== ACTIONS ===== */
.my-condo-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.my-condo-actions button,
.my-condo-actions a {
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

/* Save Rate - Green */
.btn-save {
    background: #2e7d32;
    color: #fff;
}

.btn-save:hover {
    background: #1b5e20;
}

/* Edit Condo - Navy Blue */
.btn-edit {
    background: #1a237e;
    color: #fff;
}

.btn-edit:hover {
    background: #0d1445;
}

/* Public View - Pale Blue */
.btn-view {
    background: #bbdefb;
    color: #0d47a1;
}

.btn-view:hover {
    background: #90caf9;
}