/**
 * Paycheck Calculator Utah Styles
 * Using color scheme: 
 * - Call to actions: #000000 (black)
 * - Background: #ffffff (white)
 */

/* Reset and base styles to avoid theme conflicts */
.pcu-calculator * {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pcu-calculator {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pcu-calculator h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
    font-size: 1.8rem;
}

.pcu-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.pcu-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pcu-form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.pcu-form-group input,
.pcu-form-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

.pcu-form-group input:focus,
.pcu-form-group select:focus {
    outline: none;
    border-color: #666;
}

.pcu-button {
    padding: 0.8rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 0.5rem;
}

.pcu-button:hover {
    background-color: #333333;
}

.pcu-button:active {
    transform: translateY(1px);
}

.pcu-results {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #000000;
}

.pcu-results h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.pcu-result-group {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pcu-result-group:last-child {
    border-bottom: none;
}

.pcu-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid #ddd;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .pcu-calculator {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .pcu-calculator h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .pcu-calculator {
        padding: 1rem;
        margin: 0.5rem auto;
    }
    
    .pcu-form-group label,
    .pcu-form-group input,
    .pcu-form-group select,
    .pcu-button {
        font-size: 0.9rem;
    }
    
    .pcu-calculator h2 {
        font-size: 1.3rem;
    }
    
    .pcu-results h3 {
        font-size: 1.1rem;
    }
} 