.noti_err {
    color: #B42E2C;
}
.noti_true {
    color: #006900;
}

div.video-container {
    height: 350px;
    max-height: 350px;
}

div.files-container {
    height: 350px;
    max-height: 350px;
}

div.csv-container {}

div.files-container div.file-preview-holder {
    overflow-y: scroll;
    height: 100%;
}

div.files-container label[data-testid="block-label"] {
    position: absolute;
}

.calculate_oceanai {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: var(--button-border-width) solid var(--button-primary-border-color);
    background: var(--button-primary-background-fill);
    color: var(--button-primary-text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.examples_oceanai, .clear_oceanai {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.calculate_oceanai[disabled],
.examples_oceanai[disabled],
.clear_oceanai[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.calculate_oceanai:hover:not([disabled]) {
    border-color: var(--button-primary-border-color-hover);
    background: var(--button-primary-background-fill-hover);
    color: var(--button-primary-text-color-hover);
}

.calculate_oceanai:active:not([disabled]),
.examples_oceanai:active:not([disabled]),
.clear_oceanai:active:not([disabled]) {
    transform: scale(0.98);
}