/* dil sechici - butun sehifelerde eyni */
.dil-secim {
    display: flex;
    gap: 4px;
    margin-left: 15px;
    align-items: center;
}
.dil-secim button {
    background: white;
    border: 1px solid lightgray;
    color: dimgray;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: 0.2s;
    min-width: 36px;
}
.dil-secim button:hover {
    background: lavender;
    color: royalblue;
}
.dil-secim button.aktiv {
    background: royalblue;
    color: white;
    border-color: royalblue;
}
