<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto; /* Mobilde taşma durumunda yatay kaydırma */
}
.btn {
    height: 50px;
    width: 150px;
    border: 5px solid#fc0303;
    color: white;
    transition: ease-out 0.3s;
    font-size: 2rem;
    outline: solid;
    text-align: center;
    font-size: 18px;
    font-family: 'Baskerville Old Face';
    border-radius: 16px;
}

    .btn:hover {
        box-shadow: inset 150px 0 0 0 #42FBF2;
        cursor: pointer;
        color: #000;
    }
</pre></body></html>