/* Genel vücut ve arka plan */
body {
    background-color: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: inherit; !important;
    border-top: 1px solid #dee2e6;
}


/* Geri Dönüş Butonu */
.back-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.back-button:hover {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.back-button i {
    margin-right: 8px;
}

/* Kart ve rozet tasarımı */
.card-category {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.card-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}

.card-category .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
}

.card-category h5 {
    margin: 0;
    font-size: 18px;
    color: #34495e;
    font-weight: 600;
}

/* Rozetler */
.badge {
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}

.badge-primary {
    background-color: #3498db;
    color: #fff;
}

.badge-danger {
    background-color: #e74c3c;
    color: #fff;
}

.badge-success {
    background-color: #2ecc71;
    color: #fff;
}

.badge-warning {
    background-color: #f39c12;
    color: #fff;
}

/* Tablo ve Sayfalama */
.table {
    margin-top: 30px;
}

.pagination {
    margin-top: 30px;
    justify-content: center;
}

.pagination a {
    color: #3498db;
    font-weight: bold;
    margin: 0 5px;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #3498db;
    color: white;
}

.pagination .active a {
    background-color: #3498db;
    color: white;
    border: none;
}

/* Usta profil kısmı */
.profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #0099ff;
}

.profile h4 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: bold;
}

.profile h5 {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #2c3e50;
}

/* Başlık */
h3 {
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

/* Liste stili */
.list-group-item {
    background-color: #fff;
    border: 0;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 500;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #ecf0f1;
    transform: translateY(-3px);
}

.list-group-item a {
    font-size: 18px;
    text-decoration: none;
    color: #2c3e50;
}

/* Link hover stili */
a:hover {
    color: #0056b3;
    text-decoration: none !important;
}

.login-container {
    height: 90vh; /* Yükseklik tam ekran olacak */
    display: flex; /* Flexbox ile hizalama */
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala */
}

.login-box {
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px; /* İç boşluk */

}

.login-box h2 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
	border-radius: 10px;
	padding: 10px;
}



.btn-primary {
    background-color: #3498db;
    border-radius: 20px;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.alert-danger {
    border-radius: 15px;
    font-size: 15px;
    margin-top: 20px;
}
