body {
    padding-top: 1% !important;
    background-color: #f5f5f5;
    background-image: url('../images/gri-arka-plan.jpg'); /* Aynı arka plan resmi */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: 'Arial', sans-serif;
}

h1 {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Filtreleme formu düzeni */
.form-label {
    font-weight: bold;
    color: #000000;
    text-decoration: underline;
}

form {
    margin-bottom: 30px;
}

form .form-control {
    border: 1px solid #000000;
    border-radius: 5px;
    box-shadow: none;
    transition: border-color 0.2s;
}

form .form-control:focus {
    border-color: #343a40;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Tablo düzeni */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

table thead {
    background-color: #343a40;
    color: #ffffff;
}

table th, table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

table th {
    font-size: 1rem;
    font-weight: bold;
}

table tbody tr:hover {
    background-color: #f2f2f2;
}

table tbody tr:nth-child(even) {
    background-color: rgba(248, 248, 248, 0.8);
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination-link {
    margin: 0 5px;
    padding: 10px 20px;
    color: #515253;
    text-decoration: none;
    border: 1px solid #515253;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-link:hover {
    border-color: #3d3d3d;
    background-color: #3d3d3d;
    color: white;
}

.pagination-link.active {
    border-color: #5a6268;
    background: linear-gradient(135deg, #8f8f8f, #858585, #000000a1);
    color: white;
    border-color: #6c757d;
}

/* Gri buton */
.btn-primary {
    margin-top: 15px;
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-primary:hover {
    background-color: #495057;
    border-color: #343a40;
}

@media (max-width: 768px) {
    table, .form-label, .pagination-container {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        width: 100%;
    }
    
    table thead {
        display: none; /* Tablo başlıklarını gizle */
    }

    table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 10px;
        border-bottom: 1px solid #dee2e6;
    }
    
    table td {
        text-align: left;
        padding: 10px;
        font-size: 1rem;
        border-bottom: none;
    }

    table td:before {
        content: attr(data-label); /* Mobilde veri etiketlerini ekle */
        font-weight: bold;
        display: inline-block;
        width: 120px;
    }
}
