﻿/* Landscape modda uyarı overlay'i */
@media screen and (orientation: landscape) {
    .portrait-only-overlay {
        display: flex;
    }

    .portrait-only-content {
        display: block;
    }
}

@media screen and (orientation: portrait) {
    .portrait-only-overlay {
        display: none;
    }

    .portrait-only-content {
        display: block;
    }
}

/* Overlay stil */
.portrait-only-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgb(0, 0, 0, 0.77);
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}



