/* Cicilan Modal Styles */
.cicilan-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
}

.cicilan-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cicilan-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.cicilan-close:hover {
    color: #000;
}

.cicilan-modal-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cicilan-modal-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.bank-cicilan-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bank-selection h4,
.cicilan-details h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px;
}

.bank-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bank-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.bank-item.active {
    background-color: #f2f9f6;
    border-color: #009975;
}

.bank-logo {
    padding: 5px 10px;
    background-color: #f8f8f8;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: bold;
    color: #444;
}

.cicilan-options {
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.cicilan-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cicilan-row:last-child {
    border-bottom: none;
}

.cicilan-tenor {
    font-weight: 500;
    color: #333;
}

.cicilan-amount {
    font-weight: 600;
    color: #009975;
}

.cicilan-note {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.close-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #009975;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #007c5e;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .cicilan-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}