/* Additional styles for installment system */

/* Info Rows */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .amount {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Message Container */
.message-container {
    margin-top: 1rem;
}

/* Profile Sections */
.profile-section {
    display: none;
}

.profile-section.active {
    display: block;
}

/* Payment Action */
.payment-action {
    margin-top: 2rem;
    text-align: center;
}

/* Form Actions */
.form-actions {
    margin-top: 1.5rem;
}

/* Login Form Specific */
.installment-login .login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.installment-login .login-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.installment-login .login-header p {
    color: #666;
}

/* Error States */
.form-control.error {
    border-color: #e74c3c;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .installment-header,
    .installment-footer,
    .user-menu,
    .btn {
        display: none !important;
    }
    
    .main-content {
        padding: 0 !important;
    }
}