/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Sonuçlar Kartları */
.results {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap; /* Ekran genişliğine göre kartları alt alta yerleştirir */
    justify-content: space-between;
}

.result-card {
    background: #fff;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 16px;
    width: 32%; /* Üçlü sıralama için genişlik */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-card h3 {
    margin: 0;
}

/* İkon Stilleri */
.result-card .icon {
    font-size: 30px;
}

/* Gradient Renkler */
.green {
    background: linear-gradient(145deg, #4CAF50, #45a049);
}

.red {
    background: linear-gradient(145deg, #F44336, #e53935);
}

.orange {
    background: linear-gradient(145deg, #FF5722, #f57c00);
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .result-card {
        width: 100%; /* Mobilde kartlar tek satırda görünür */
    }
    input, button {
        font-size: 14px;
    }
}
