/* ACT to SAT Converter */

.act-sat-converter-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 14px 10px;
}

.act-sat-converter-card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.08);
}

.act-sat-title {
    color: #1F3A5F;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-align: center;
}

.act-sat-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.act-sat-field-group:last-child {
    margin-bottom: 0;
}

.act-sat-label {
    color: #1F3A5F;
    font-size: 0.95rem;
    font-weight: 700;
}

.act-sat-input {
    width: 100%;
    height: 44px;
    border: 2px solid #1F3A5F;
    border-radius: 8px;
    padding: 0 12px;
    color: #1F3A5F;
    font-size: 1rem;
    font-weight: 600;
    background: #FFFFFF;
    transition: box-shadow 0.2s ease;
}

.act-sat-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.18);
}

.act-sat-output {
    background: #F8FAFC;
}

.act-sat-help {
    margin: 0;
    color: #4E5D6C;
    font-size: 0.85rem;
}

.act-sat-help-error {
    color: #B42318;
}

.act-sat-divider {
    height: 1px;
    background: #E0E0E0;
    margin: 16px 0;
}

@media (max-width: 600px) {
    .act-sat-title {
        font-size: 1.2rem;
    }

    .act-sat-converter-card {
        padding: 14px;
    }
}
