.flag {
    display: inline-block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flag.current {
    width: 18px;
    height: 13px;
}

.flag-tr, .flag-tr-simple {
    background-image: url('../images/tr.png');
}

.flag-en, .flag-en-simple {
    background-image: url('../images/en.png');
}

.flag:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .flag {
        width: 18px;
        height: 13px;
    }
    
    .flag.current {
        width: 16px;
        height: 12px;
    }
}