/* Vlastní styly pro hlavní stránku */
.main {
    background-color: #ffffff !important;
}

body {
    background-color: #ffffff !important;
}

/* Pokud je aktivní tmavý režim, zachovat původní barvy */
body.dark {
    background-color: var(--theme) !important;
}

body.dark .main {
    background-color: var(--theme) !important;
}

/* Pro profile mode na hlavní stránce */
.profile {
    background-color: transparent !important;
}

/* Zajistit bílé pozadí pro obsah */
.list {
    background-color: #ffffff !important;
}

body.dark .list {
    background-color: var(--theme) !important;
}

/* Odstranění kruhu u profilové fotky */
.profile img {
    border-radius: 0 !important;
    max-width: 100% !important;
    height: auto !important;
}