/* General Styles */
body {
    background: #fff;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    margin: 10px 0;
    text-rendering: optimizelegibility;
}

video {
    max-width: 100%;
}

.rdc-head {
    margin-bottom: 40px;
    font-weight: 500;
}

.language-options {
    margin: 24px 0;
}

header {
    background-color: #2380c0;
}

/* Navigation Bar */
nav {
    background-color: #2380c0;
    padding: 0 !important;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    padding: 0 1rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f1c40f;
}

.navbar-brand img {
    max-width: 300px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.invalid-feedback {
    margin-top: 16px;
    font-size: 17px;
}

.dropdown-toggle.is-invalid {
    border: 1px solid #dc3545;
}

/* Buttons */
.rdc-main .rdc-btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
}

.rdc-btn--primary {
    background-color: #e9af59;
    color: #ffffff;
}

.rdc-btn--secondary {
    background-color: #2380c0;
    color: #ffffff;
}

.rdc-main .rdc-btn:hover {
    background-color: #3498db;
}

/* Customize other elements as needed */

.docs-wrapper {
    background-color: #f2f2f2;
    padding-top: 40px;
    padding-bottom: 40px;
}

nav.sidebar {
    position: sticky;
    top: 5rem;
    display: block !important;
    height: calc(100vh - 7rem);
    padding-left: 0.25rem;
    margin-left: -0.25rem;
    overflow-y: auto;
    background-color: transparent;
}

.docs-content section {
    padding-bottom: 33px;
    margin-bottom: 40px;
    border-bottom: 1px solid;
}

.sidebar .sidebar-head {
    margin-bottom: 30px;
}

.sidebar .nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,.2);
    width: 2px;
    top: 5px;
    bottom: 15px;
    z-index: 0;
}

.sidebar a {
    color: rgba(0, 0, 0, 0.85);
}

.sidebar ul {
    flex-wrap: nowrap;
    list-style: none;
    margin-block-start: 12px;
    margin-block-end: 16px;
    margin-inline-start: 6px;
    margin-inline-end: 0;
    position: relative;
    opacity: .6;
    transition: opacity ease-in-out 120ms;
}

.sidebar ul:hover {
    opacity: 1;
}

.sidebar .active a {
    font-weight: bold;
}

.sidebar li {
    margin-bottom: 12px;
    font-size: 14px;
    position: relative;
    padding-inline-start: 16px;
}

.sidebar .text-limit-lines-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block !important;
    position: relative;
    color: #e9af59;
    font-weight: 500;
}

.sidebar li:not(.active) .sidebar-page-nav-bullet {
    background-color: #bbb !important;
}

.sidebar .sidebar-page-nav-bullet {
    background-color: #e9af59;
}

.sidebar .sidebar-page-nav-bullet {
    width: 6px;
    height: 6px;
    position: absolute;
    left: -2px;
    top: 9%;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #f2f2f2;
    box-shadow: 0 0 0 6px #f2f2f2;
    z-index: 1;
}

.docs-content .docs-content-container {
    background-color: #fff;
    box-shadow: 0 1px 6px -1px rgb(0 0 0 / 10%);
    border-radius: 3px;
    padding: 16px 32px;
}

.docs-sub {
    margin-bottom: 25px;
}

.docs-sub-step {
    color: #444;
}

/* Media Queries */
@media (min-width:768px) {
    .docs-wrapper {
        padding-left: 50px;
    }
}