/* style.css for visual calculator */
.afpc-card {
    display: flex;
    flex-wrap: wrap;
    background: #EDEFFD;
    border-radius: 16px;
    padding: 30px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}
.afpc-left, .afpc-right {
    flex: 1 1 450px;
}
.afpc-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #080981;
}
.afpc-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    background: #fff;
    color: #333;
}
.afpc-button {
    width: 100%;
    background-color: #080981;
    color: #fff;
    padding: 14px;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.afpc-button:hover {
    background-color: #060769;
}
.afpc-right {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    color: #222;
    position: relative;
}
.afpc-summary h3 {
    color: #080981;
    font-size: 20px;
}
.afpc-summary {
    animation: slideIn 0.4s ease-out;
}
.afpc-breakdown div {
    margin: 8px 0;
    font-size: 15px;
}
.afpc-placeholder {
    font-style: italic;
    color: #999;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
