.hesaplama-araci {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hesaplama-baslik {
    text-align: center;
    margin-bottom: 30px;
}

.hesaplama-baslik i {
    font-size: 2.5em;
    color: #4a90e2;
    margin-bottom: 10px;
}

.hesaplama-baslik h2 {
    color: #333;
    margin: 0;
    font-size: 1.8em;
}

.bilgi-kutusu {
    background-color: #f8f9fa;
    border-left: 4px solid #4a90e2;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.bilgi-kutusu i {
    color: #4a90e2;
    margin-right: 10px;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #495057;
    font-weight: 500;
}

.form-group label i {
    color: #4a90e2;
    margin-right: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.2);
}

.form-group small {
    display: block;
    color: #6c757d;
    margin-top: 5px;
    font-size: 0.85em;
}

.hesapla-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hesapla-btn:hover {
    background-color: #357abd;
}

.hesapla-btn i {
    margin-right: 8px;
}

#sonuclar {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#sonuclar.hidden {
    display: none;
}

#sonuclar.visible {
    display: block;
}

.sonuc-baslik {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.sonuc-baslik i {
    color: #4a90e2;
    font-size: 1.5em;
    margin-right: 10px;
}

.sonuc-baslik h3 {
    margin: 0;
    color: #333;
}

.sonuc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.sonuc-item:last-child {
    border-bottom: none;
}

.sonuc-label {
    font-weight: 500;
    color: #495057;
}

.sonuc-deger {
    color: #212529;
}

.bilgi-kartlari {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.kart {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kart i {
    color: #4a90e2;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.kart h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.kart p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.dipnot {
    margin-top: 30px;
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    color: #856404;
}

.dipnot i {
    color: #856404;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hesaplama-araci {
        padding: 15px;
    }

    .hesaplama-baslik h2 {
        font-size: 1.5em;
    }

    .form-container {
        padding: 15px;
    }

    .bilgi-kartlari {
        grid-template-columns: 1fr;
    }
} 