/* Start custom CSS for shortcode, class: .elementor-element-76afa3b */.box{
    max-width: 750px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

.box h3{
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #102C57;
    font-weight: 800;
}

/* Inputs */
.box input{
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.box input:focus{
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.15);
}

/* Button */
.box button{
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg,#0073aa,#005b8f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.box button:hover{
    background: linear-gradient(135deg,#005b8f,#004466);
    transform: translateY(-1px);
}

/* Result Card */
.loan-result{
    border: 1px solid #eee;
    padding: 18px;
    border-radius: 12px;
    background: #fafafa;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.loan-result h3{
    color: #1e7e34;
    font-weight: 700;
}

/* Labels */
.loan-result p{
    margin: 6px 0;
    font-size: 15px;
    color: #333;
}

/* Total */
.total-return{
    color: #0d6efd;
    font-weight: bold;
    font-size: 16px;
}

/* Status Badges */
.status-paid{
    display: inline-block;
    padding: 6px 12px;
    background: #d4edda;
    color: #155724;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

.status-pending{
    display: inline-block;
    padding: 6px 12px;
    background: #fff3cd;
    color: #856404;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

.status-approved{
    display: inline-block;
    padding: 6px 12px;
    background: #cce5ff;
    color: #004085;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

/* Bank box */
.bank-box{
    background: #f5f5f5;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    border-left: 4px solid #0073aa;
}

/* Mobile */
@media(max-width:600px){
    .box{
        padding: 15px;
    }
}/* End custom CSS */