/* Genel stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    padding: 20px;
}

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

h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* Form ve input stilleri */
form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

label {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

input {
    padding: 8px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Buton stil */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

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

/* Sonuç kartları */
.results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.result-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.result-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.result-card p {
    font-size: 1rem;
}

/* Kanser türlerine göre renkler */
.green { background-color: #4CAF50; color: white; }
.yellow { background-color: #FFC107; color: black; }
.red { background-color: #F44336; color: white; }
.blue { background-color: #2196F3; color: white; }  /* Akciğer Kanseri için */
.purple { background-color: #9C27B0; color: white; } /* Pankreas Kanseri için */
.orange { background-color: #FF5722; color: white; }  /* Kan Kanseri için */

/* Mobil uyumluluk */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    input, button {
        width: 100%;
    }

    .result-card {
        width: 100%;
        max-width: none;
    }
}
