/* Mevduat faizi hesaplama sayfası için stil */
.mevduat-faizi-hesaplama-container {
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.converter-content {
    flex: 1;
    min-width: 0;
    font-family: Arial, sans-serif;
}

.converter-and-content-wrapper {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calculator-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.calculator-header {
    text-align: center;
    margin-bottom: 20px;
}

.calculator-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.calculator-header p {
    font-size: 16px;
    color: #666;
}

.calculator-form {
    display: grid;
    gap: 15px;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.neumorphic-input {
    display: flex;
    align-items: center;
    background: #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
}

.neumorphic-input input,
.neumorphic-input select {
    border: none;
    background: transparent;
    font-size: 16px;
    color: #333;
    width: 100%;
    outline: none;
}

.calculate-btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
    width: 100%;
}

.calculate-btn:hover {
    background: #1557b0;
}

.result-card {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.result-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.result-value {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

/* Popüler Tutar Kutuları */
.popular-amounts-section {
    margin: 30px 0;
}

.popular-amounts-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.popular-amounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.amount-card {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 220px;
}

.amount-card:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.amount-card .amount-value {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.amount-card .amount-label {
    font-size: 16px;
    display: block;
    line-height: 1.4;
}

.amount-card:hover .amount-label {
    color: white;
}

.content-section {
    margin-top: 30px;
    text-align: left;
}

.content-section h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.content-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.content-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.content-section h3 {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Karşılaştırma ve Faiz Tablosu */
.comparison-card, .faiz-tablosu {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.comparison-card .bank-name, .faiz-tablosu .bank-name {
    background: #1a73e8;
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.comparison-card table, .faiz-tablosu table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-card th,
.comparison-card td,
.faiz-tablosu th,
.faiz-tablosu td {
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
}

.comparison-card th, .faiz-tablosu th {
    background: #f1f1f1;
    color: #333;
    font-weight: bold;
}

.comparison-card td, .faiz-tablosu td {
    background: #fff;
    color: #666;
}

.faiz-tablosu tr:nth-child(even) td {
    background: #ffffff;
}

/* Sidebar */
.sidebar-wrapper {
    flex: 0 0 350px;
    max-width: 350px;
}

/* Accordion */
.accordion {
    margin: 15px 0;
    background: #e0e0e0;
    border-radius: 8px;
    box-shadow: inset 3px 3px 6px #bebebe, inset -3px -3px 6px #ffffff;
    overflow: visible;
    width: 100%;
}

.accordion-header {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d9d9d9;
}

.accordion-header::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 10px 12px;
    font-size: 14px;
    background: #f9f9f9;
}

.accordion-content.active {
    display: block;
}

.content-item {
    padding: 5px 0;
    font-size: 14px;
    color: #333;
    position: relative;
    white-space: nowrap;
    overflow: visible;
}

.content-item::before {
    content: '•';
    color: #1a73e8;
    margin-right: 8px;
    display: inline-block;
}

.content-item a {
    text-decoration: none;
    color: #333;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.2s ease;
    white-space: nowrap;
    overflow: visible;
}

.content-item a:hover {
    background: #e0e0e0;
}

/* Responsive Düzenlemeler */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
    }

    .calculator-card {
        padding: 15px;
    }

    .calculator-form {
        grid-template-columns: 1fr;
    }

    .result-card {
        margin-top: 15px;
    }

    .popular-amounts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amount-card {
        padding: 15px;
        max-width: 180px;
    }

    .amount-card .amount-value {
        font-size: 18px;
    }

    .amount-card .amount-label {
        font-size: 14px;
    }

    .sidebar-wrapper {
        flex: 1;
        width: 100%;
    }

    .accordion {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .main-container {
        padding: 0 5px;
    }

    .calculator-header h2 {
        font-size: 20px;
    }

    .calculator-header p {
        font-size: 14px;
    }

    .input-group label, .neumorphic-input input, .neumorphic-input select, .calculate-btn {
        font-size: 14px;
    }

    .result-value {
        font-size: 20px;
    }

    .popular-amounts-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        font-size: 18px;
    }

    .content-section h3 {
        font-size: 16px;
    }

    .content-section p, .content-section ul li {
        font-size: 14px;
    }

    .comparison-card th, .comparison-card td, .faiz-tablosu th, .faiz-tablosu td {
        font-size: 14px;
        padding: 8px;
    }

    .accordion-header {
        font-size: 14px;
    }

    .content-item {
        font-size: 12px;
    }
}