/* public/css/stiller.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;

}

.konteyner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.baslik {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.uyari {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.uyari-basarili {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.uyari-uyari {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.uyari-hata {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.kart {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.buton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.buton:hover {
    background-color: #0056b3;
}

.buton-basarili {
    background-color: #28a745;
}

.buton-basarili:hover {
    background-color: #218838;
}

.buton-uyari {
    background-color: #ffc107;
    color: #212529;
}

.buton-uyari:hover {
    background-color: #e0a800;
}

.tablo {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tablo th, .tablo td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tablo th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.form-grubu {
    margin-bottom: 20px;
}

.form-grubu label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-grubu input, .form-grubu textarea, .form-grubu select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.resim-fluid {
    max-width: 100%;
    height: auto;
}