.inline {
    vertical-align: middle;
    height: 1em;
    /* Matches the line height */
    width: auto;
    /* Maintains aspect ratio */
}

footer {
    margin-top: auto;
}

footer .left {
    float: left;
}

footer .center {
    text-align: center;
    width: 100%;
}

footer .right {
    float: right;
}

center {
    text-align: center;
}

.offscreen {
    position: absolute;
    left: -5000px;
}

/* Tab Styling */
.tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    outline: none;
    flex: 1;
    /* Make each tab take up equal space */
    text-align: center;
    /* Center the text in the tab */
}

.tab-btn.active {
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #fff;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Extra toast styles */

.bg-error {
    background-color: #dc3545 !important; /* Bootstrap danger color */
}