@font-face {
    font-family: 'Oswald';
    src: url('../static/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700;
}

body {
    font-family: 'Oswald', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
}

button {
    cursor: pointer;
    font-family: 'Oswald', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5b54e7;
}

#post-login-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    user-select: none;
}

.sidebar {
    width: 200px;
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar h2 {
    margin: 0 0 20px 0;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.sidebar a:hover {
    background-color: #0056b3;
    border-radius: 4px;
}

.container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar {
    width: 200px;
    background-color: #343a40;
    color: #fff;
    padding: 0 20px 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar h2 {
    margin: 0 0 20px 0;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.sidebar a:hover {
    background-color: #0056b3;
    border-radius: 4px;
}

.container {
    flex: 1;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
}

.header button {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: #fff;
    border-radius: 4px;
}

.title-header {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 10px 0;
}

.title-header img {
    margin-right: 10px; /* Space between image and text */
    vertical-align: middle; /* Aligns image to the middle of the text */
}

.title-header span {
    font-size: 20px; /* Adjust the font size as needed */
    color: #fff; /* White text color */
    line-height: 1; /* Ensures proper vertical alignment */
}

.loading-wp {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loading-wp > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #ffffff5c;;
}

[data-datatype="number"], [data-datatype="date"] {
    text-align: right !important;
}

button:focus {
    outline: none;
}

button:not([disabled]) {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.disabled[disabled] {
    background-color: var(--background-disable);
    color: var(--text-color-disable);
    cursor: not-allowed;
    border: 1px solid var(--border-disable);
    padding: 10px 20px;
    border-radius: 4px;
    margin-right: 10px;
}

.enable.previous-btn:not([disabled]), .enable.next-btn:not([disabled]) {
    background-color: var(--background-steps-active);
    color: var(--text-color-light);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}

.enable:not([disabled]) {
    background-color: var(--background-steps-active);
    color: var(--text-color-light);
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}
