/*
 * Maaş Zammı Hesaplama Aracı Stilleri
 * Tema çakışmalarını önlemek için tüm stiller .mzh-container ile sarmalanmıştır.
*/
.mzh-container {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    line-height: 1.5;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.mzh-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 640px) {
    .mzh-card {
        padding: 2rem;
    }
}
.mzh-container .result-card {
    margin-top: 2rem;
    border-top: 4px solid #3b82f6;
}
.mzh-header {
    text-align: center;
    margin-bottom: 2rem;
}
.mzh-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}
@media (min-width: 640px) {
    .mzh-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
.mzh-subtitle {
    margin-top: 0.5rem;
    color: #6b7280;
}
.mzh-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .mzh-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.mzh-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}
.mzh-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    box-sizing: border-box;
    font-size: 1rem;
}
.mzh-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}
.mzh-hidden {
    display: none;
}
.mzh-result-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .mzh-result-grid {
        flex-direction: row;
        justify-content: space-around;
    }
}
.mzh-result-item p:first-child {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}
.mzh-result-item p:last-child {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0.25rem 0 0 0;
}
.mzh-final-salary {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
.mzh-final-salary p:first-child {
    text-transform: uppercase;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin: 0;
}
.mzh-final-salary p:last-child {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-top: 0.5rem;
}
.mzh-related-link-wrapper {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}
.mzh-related-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}
.mzh-related-link a:hover {
    text-decoration: underline;
}
