/* Genel Form Stili */
.volunteer-section h1{
    font-size:30px;
    color:#000;
    margin-bottom:20px;
}

/* Form İçindeki Label */
.form-label {
    font-weight: bold;
    color: #333;
    display:inline-block;
    margin-bottom:10px;
}

/* Zorunlu Alanları Vurgulayan Span */
.form-label span {
    color: red;
}

/* Input Alanları */
.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Input'a Odaklanınca */
.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Radio Butonları ve Checkbox'lar */
.form-check-input {
    margin-right: 5px;
    cursor: pointer;
}

/* Tüm "mb-3" Alanları için Boşluk Ayarı */
.mb-3 {
    margin-bottom: 15px;
}

/* Radio Butonları İçin Alan */
.mb-3 input[type="radio"] {
    margin-right: 5px;
}

/* Dil Becerileri Tablosu */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

table td:first-child {
    font-weight: bold;
    text-align: left;
}

/* Dosya Yükleme Alanı */
input[type="file"] {
    padding: 8px;
}

/* Buton Stili */
.btn-primary {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Butona Hover Efekti */
.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Tasarım */
@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    .btn-primary {
        font-size: 16px;
    }

    table td {
        padding: 5px;
    }
}
