.container-klf {
    max-width: 1200px;
    margin: 26px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-size: 28px;
}

.year-indicator-klf {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.year-klf {
    font-weight: bold;
    color: #0047ab;
    margin: 0 10px;
    font-size: 18px;
}

.year-line-klf {
    height: 1px;
    background-color: #0047ab;
    flex-grow: 0.1;
    max-width: 50px;
}

.filters-klf {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.filter-group-klf {
    flex: 1;
    min-width: 250px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.filter-group-klf input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.sort-button-header {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.sort-button-header:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sort-button-header:active {
    transform: scale(0.95);
}

.custom-select-klf {
    position: relative;
    width: 100%;
}

.select-selected-klf {
    background-color: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
}

.select-arrow-klf {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.select-items-klf {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000;
    text-align: start;
}

.select-hide-klf {
    display: none;
}

.search-container-klf {
    padding: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.search-container-klf input {
    width: 100%;
    padding: 8px;
    padding-right: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-icon-klf {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.options-container-klf {
    max-height: 250px;
    overflow-y: auto;
}

.select-item-klf {
    padding: 10px;
    cursor: pointer;
}

.select-item-klf:hover {
    background-color: #f1f1f1;
}

.select-item-klf.selected {
    background-color: #e6f0ff;
}

.divider-klf {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.table-container-klf {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

thead {
    background-color: #0a3364;
    color: white;
}


td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: #000;
}

th {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: #fff;
}

tbody tr {
    transition: background-color 0.3s;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .filters-klf {
        flex-direction: column;
    }

    .filter-group-klf {
        width: 100%;
    }

    th,
    td {
        padding: 8px 10px;
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container-klf {
        padding: 10px;
    }

    th,
    td {
        padding: 6px 8px;
        font-size: 12px;
    }

    h1 {
        font-size: 20px;
    }
}