:root {
    --bs-form-invalid-border-color: #dc3545;
    --bs-form-valid-border-color: green;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Martel Sans', sans-serif;
}

.container {
    display: flex;
    min-height: 100vh;
}

.v-sidebar {
    width: 20%;
    background-color: #202123;
    color: #e2e2e6;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    position: fixed;
    height: 100%;
}

.v-content {
    width: 100%;
    background-color: #444654;
    color: #e2e2e6;
    padding-left: 20%;
    display: flex;
    justify-content: center;
}

.content {
    padding: 20px 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content form {
    display: flex;
    flex-direction: column;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #e2e2e6;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.v-sidebar .button {
    background: #444654;
    color: #dde5ff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
    padding: 5px 5px 5px;
    border: 1px solid #f1f1f14d;
    border-radius: 3px;
}

.v-sidebar .button:hover:not(.active) {
    background-color: #555;
    color: white;
}

.v-sidebar .button.active {
    background: #efefef;
    color: #202123;
}

.v-content .button {
    background: #202123;
    color: #dde5ff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
    padding: 5px 5px 5px;
    border: 1px solid #000;
    border-radius: 3px;
}

.v-content .button:hover:not(.active) {
    background-color: #555;
    border: 1px solid #f1f1f14d;
    color: white;
}

.v-content .button.active {
    background: #efefef;
    border: 1px solid #f1f1f14d;
    color: #202123;
}

/* Make the textarea 100% width */
.wide-textarea {
    width: 100%;
    padding: 10px;
}

/* Add a simple divider */
hr {
    border: 1px solid #e2e2e6; /* Use the same color as your text for a consistent look */
    margin-bottom: 10px; /* Adjust this value to control the spacing below the divider */
}

.textfield {
    width: 32ch; /* Adjust this value to control the width of the text field */
}

.bottom-button {
    margin-top: auto; /* To push the button to the bottom of the sidebar */
}

hr {
    border: 1px solid #e2e2e6;
    margin-top: 10px;
    margin-bottom: 5px;
}

.v-sidebar a.selected {
    background-color: #2c2c2b;
    pointer-events: none; /* Make the link non-clickable */
    cursor: default; /* Change the cursor to default when hovering */
    width: 100%;
    display: inline-block;
    padding: 5px 0; /* Add vertical padding for better appearance */
}

.v-sidebar a.active {
    background-color: #04AA6D;
    color: white;
}

.v-sidebar a:hover:not(.active):not(.logo) {
    background-color: #555;
    color: white;
}

.v-sidebar ul {
    margin: 0;
    overflow: auto;
    scroll-behavior: auto;
    height: calc(100vh - 275px);
    display: flex;
    flex-direction: column;
}

/* width */
.v-sidebar ul::-webkit-scrollbar {
    width: 0;
}

/* Track */
.v-sidebar ul::-webkit-scrollbar-track {
    background: #202123;
}

/* Handle */
.v-sidebar ul::-webkit-scrollbar-thumb {
    background: #000;
}

/* Handle on hover */
.v-sidebar ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.v-sidebar ul {
    padding: 0;
}

.v-sidebar ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
}

.v-sidebar ul li * {
    vertical-align: middle;
}

.v-sidebar ul li a span {
    white-space: nowrap;
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v-sidebar ul li {
    position: relative;
    list-style: none;
}

.inline {
    width: unset;
}

.form-control, .form-select {
    border: 1px solid var(--bs-body-color);
    box-shadow: inset 0 0 1px 1px var(--bs-body-color);
}

.form-control {
    padding-right: 0.75rem !important;
    background-image: unset !important;
}

.from-select {
    padding-right: 2.25rem !important;
    --bs-form-select-bg-icon: none !important;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border: 1px solid var(--bs-form-invalid-border-color);
    box-shadow: inset 0 0 1px 1px var(--bs-form-invalid-border-color);
}

.was-validated:valid, .is-valid {
    border: 1px solid var(--bs-form-valid-border-color);
    box-shadow: inset 0 0 1px 1px var(--bs-form-valid-border-color);
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: none;
    padding-right: 2.25rem;
}

.form-control:focus, .form-select:focus {
    border: 1px solid #ffc107 !important;
    box-shadow: inset 0 0 1px 1px #ffc107 !important;
}

.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .form-control:invalid, .form-control.is-invalid {
    padding-right: 0.75rem;
    background-image: unset;
}

audio {
    height: 33px;
    width: 100%;
}