/* Hesaplama Araçları Genel Stiller */
.hesaplama-araci {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.hesaplama-araci label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.hesaplama-araci input,
.hesaplama-araci select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.hesaplama-araci button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hesaplama-araci button:hover {
    background: #0056b3;
}

.hesaplama-araci .sonuclar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.hesaplama-araci .sonuc-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hesaplama-araci .sonuc-label {
    font-weight: 600;
    color: #495057;
}

.hesaplama-araci .sonuc-deger {
    font-weight: 700;
    color: #28a745;
} 