
.mcp-container{
    display:flex;
    gap:30px;
    background:#eef2f5;
    padding:30px;
    border-radius:12px;
    font-family:Arial,sans-serif;
    margin:30px auto;
    max-width:1200px;
}

.mcp-form{
    width:35%;
    background:#fff;
    padding:25px;
    border-radius:10px;
}

.mcp-results{
    width:65%;
    background:#fff;
    padding:25px;
    border-radius:10px;
}

.mcp-form label{
    display:block;
    margin-top:15px;
    font-weight:bold;
}

.mcp-form input,
.mcp-form select{
    width:100%;
    padding:12px;
    margin-top:6px;
    border:1px solid #ccc;
    border-radius:6px;
}

#mcpChart{
    margin-top:30px;
}

#calculateMortgage{
    width:100%;
    padding:15px;
    margin-top:20px;
    background:#0b63ce;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
}

.mcp-card{
    background:#f7f9fc;
    padding:20px;
    margin-bottom:20px;
    border-radius:8px;
}

.mcp-card div{
    font-size:32px;
    color:#0b63ce;
    font-weight:bold;
}

.mcp-table-wrapper{
    max-width:1200px;
    margin:20px auto;
    background:#fff;
    padding:25px;
    border-radius:10px;
}

#mortgageChart{
    max-height:300px;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    border:1px solid #ddd;
    padding:10px;
    text-align:left;
}

table th{
    background:#0b63ce;
    color:#fff;
}

@media(max-width:768px){

    .mcp-container{
        flex-direction:column;
    }

    .mcp-form,
    .mcp-results{
        width:100%;
    }
}
