@media (min-width: 992px) {
    .content-layout {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .main-content {
        flex: 3;
    }

    .sidebar-menu {
        flex: 1;
        position: sticky;
        top: 20px;
    }
}

/* Hesaplama Alanı Stili (Eski - kidem-ihbar uyumlu kalabilir) */
.calc-wrapper {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Yeni Hesaplama Kartı (Diğer araçlar için) */
.calc-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    margin-bottom: 40px;
}

.calc-title {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.calc-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Elemanları */
.calc-card label,
.calc-wrapper label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.calc-card .form-control,
.calc-wrapper .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fcfcfc;
    font-family: inherit;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-col {
    flex: 1;
    min-width: 200px;
}

/* Özel Input Grupları (TL/Yüzde ikonlu) */
.input-group {
    position: relative;
}

.currency-symbol,
.input-suffix {
    position: absolute;
    right: 15px;
    top: 12px;
    color: #999;
    font-weight: bold;
}

/* Buton */
.calc-btn {
    width: 100%;
    padding: 15px;
    background-color: #cfaa5e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.calc-btn:hover {
    background-color: #b39048;
}

/* Sonuç Alanı */
.result-box {
    display: none;
    margin-top: 30px;
    background: #f8fcfc;
    border: 1px solid #e0f2f1;
    border-radius: 8px;
    overflow: hidden;
}

.result-header {
    background: #e0f7fa;
    padding: 15px;
    color: #00695c;
    font-weight: bold;
    text-align: center;
}

.result-content {
    padding: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.result-total {
    display: flex;
    justify-content: space-between;
    background: #cfaa5e;
    padding: 15px;
    border-radius: 6px;
    color: white;
    align-items: center;
}

.result-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Not / Uyarı Kutuları */
.info-warning {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
    background: #fff8e1;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

/* Mevcut Uyarı Kutusu (Eski uyumlu) */
.disclaimer-box {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-left: 5px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* İçerik Tipografisi */
.article-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.article-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.article-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.article-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.article-content li {
    margin-bottom: 10px;
}

/* Yardımcı Metinler */
.form-help {
    color: #888;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.result-subtext {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

/* Radio Buton Grubu */
.radio-group {
    display: flex;
    gap: 30px;
}

.radio-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-text {
    font-size: 1rem;
    color: #333;
}

/* İcra Masrafı Tablosu */
.result-summary-header {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.summary-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.summary-value {
    display: block;
    color: #cfaa5e;
    font-size: 2rem;
    font-weight: bold;
}

.result-table-wrapper {
    padding: 20px;
    background: #fff;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
}

.result-row {
    border-bottom: 1px solid #f0f0f0;
}

.result-cell-label {
    padding: 10px 0;
    color: #555;
}

.result-cell-value {
    padding: 10px 0;
    text-align: right;
    font-weight: 600;
}

.result-footer-note {
    background: #fcfcfc;
    padding: 15px;
    border-top: 1px solid #eaeaea;
    font-size: 0.85rem;
    color: #888;
}

.result-warning-box {
    text-align: center;
    font-size: 0.8rem;
    color: #e65100;
    margin-top: 10px;
    background: #fff3e0;
    padding: 8px;
    border-radius: 4px;
}
