/* Digital SAT Calculator Styles */
.dsatcalc-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.dsatcalc-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.dsatcalc-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.dsatcalc-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.dsatcalc-input-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.dsatcalc-input-group label {
    flex: 1 0 200px;
    margin-bottom: 5px;
}

.dsatcalc-input-group input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dsatcalc-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.dsatcalc-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 20px 0;
}

.dsatcalc-button:hover {
    background-color: #333333;
}

.dsatcalc-results {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
}

.dsatcalc-result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.dsatcalc-result-item:last-child {
    border-bottom: none;
}

.dsatcalc-total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #ddd;
}

/* Responsive styles */
@media (max-width: 600px) {
    .dsatcalc-container {
        padding: 15px;
    }
    
    .dsatcalc-input-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dsatcalc-input-group label {
        margin-bottom: 8px;
    }
    
    .dsatcalc-input-group input {
        width: 100%;
    }
}