#hc-yillik-izin-ucreti-hesaplama {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #f0f0f0;
}

#hc-yillik-izin-ucreti-hesaplama .hc-header {
    text-align: center;
    margin-bottom: 30px;
}

#hc-yillik-izin-ucreti-hesaplama h3 {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

#hc-yillik-izin-ucreti-hesaplama .hc-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

#hc-yillik-izin-ucreti-hesaplama .hc-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (min-width: 480px) {
    #hc-yillik-izin-ucreti-hesaplama .hc-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    #hc-yillik-izin-ucreti-hesaplama .hc-form-group:last-child {
        grid-column: span 2;
    }
}

#hc-yillik-izin-ucreti-hesaplama .hc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
}

#hc-yillik-izin-ucreti-hesaplama .hc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#hc-yillik-izin-ucreti-hesaplama input, 
#hc-yillik-izin-ucreti-hesaplama select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    background: #f8fafc;
}

#hc-yillik-izin-ucreti-hesaplama input:focus, 
#hc-yillik-izin-ucreti-hesaplama select:focus {
    border-color: #4a90e2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

#hc-yillik-izin-ucreti-hesaplama .hc-input-icon {
    position: absolute;
    right: 15px;
    color: #a0aec0;
    font-weight: 600;
    font-size: 0.9rem;
}

#hc-yillik-izin-ucreti-hesaplama .hc-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

#hc-yillik-izin-ucreti-hesaplama .hc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

#hc-yillik-izin-ucreti-hesaplama .hc-btn:active {
    transform: translateY(0);
}

#hc-yillik-izin-ucreti-hesaplama .hc-result {
    margin-top: 30px;
    padding: 25px;
    background: rgba(74, 144, 226, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    display: none;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result.visible {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-header {
    font-weight: 700;
    font-size: 0.9rem;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-main {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    border-left: 4px solid #4a90e2;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-item:last-child {
    margin-bottom: 0;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-item.primary {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-item.primary span {
    font-size: 0.9rem;
    color: #666;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-item.primary strong {
    font-size: 2rem;
    color: #1a1a1a;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-details {
    padding: 0 10px;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-details .hc-result-item span:first-child {
    color: #718096;
    font-size: 0.85rem;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-details .hc-result-item span:last-child {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

#hc-yillik-izin-ucreti-hesaplama .hc-result-footer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #a0aec0;
    line-height: 1.4;
    text-align: center;
}
