body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    height: 100svh;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}

*::-webkit-scrollbar {
    width: 8px;
    display: none;
}

*::-webkit-scrollbar-track {
    background: var(--md-surface-1);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--md-primary);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--md-primary-hover);
}

h2 {
    color: black;
    font-size: 20px;
    text-decoration: underline;
}

.slider-container {
    display: flex;
    overflow: hidden;
    width: 95vw;
    max-width: 95vw;
    margin: 20px auto;
    height: 200px;
    border-radius: 10px;
    position: relative;
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.channel-section {
    margin: 10px;
}

.section-header {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.see-all-btn {
    background-color: #5856d6;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}

.scrollable {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
}

.scrollable img {
    width: 100px;
    height: 100px;
    object-fit: fill;
    border-radius: 10px;
}

.provider-icons img {
    width: 80px;
    height: 80px;
    padding: 5px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid goldenrod;
}

.dynamic-channel-img {
    border: 3px solid gold;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dynamic-channel-img:hover,
.dynamic-channel-img:active,
.dynamic-channel-img:focus {
    border-color: red;
}

.footer {
    height: 10px;
}