/* Genel Stil Ayarları */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

select, button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"] {
    background-color: #007bff;
    color: #fff;
}

button[type="button"] {
    background-color: #6c757d;
    color: #fff;
    font-size: 18px;
}

button[type="submit"]:hover, button[type="button"]:hover {
    opacity: 0.9;
}

#sonuc {
    margin-top: 20px;
}

#sonuc h3 {
    color: #333;
    font-size: 1.2em;
}

#sonuc p {
    margin: 5px 0;
}

#sonuc hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}

/* Telaffuz Butonu */
.telaffuz-button {
    display: inline-flex;
    align-items: center;
    background-color: #ff5c5c;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.telaffuz-button:hover {
    background-color: #ff3030;
}

.telaffuz-button i {
    margin-right: 8px;
    font-size: 18px;
}
