/* Genel Stil Ayarları */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9ecef;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Başlık Stilleri */
h2 {
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

h5 {
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Etiket Stilleri */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #495057;
}

/* Girdi Alanları */
input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Paragraf Stilleri */
p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 15px;
}

.badge {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Renkli vurgular */
.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

/* Butonlar */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Responsive Ayarlar */
@media (max-width: 767px) {
    .container {
        padding: 20px;
    }
}
s