.container video {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
}

.video-container {
    position: relative;
    width: 100vw;
    height: 50vh;
    object-fit: cover;
}

.video-gradient {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 15%) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.intro-text-max-width {
    max-width: 800px;
}

.table-max-width {
    max-width: 500px;
}

#login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    /* or display: none if you prefer */
}

#login-card {
    background: #111;
    padding: 32px;
    border-radius: 8px;
    min-width: 200px;
}

#login-modal {
    background: #111;
    padding: 32px;
    border-radius: 8px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}