:root {
    --accent-color: #FFC61E;
    --accent-text-color: #111;
}

.elementor-divider-separator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    margin-top: 6px;
}

.mySylvacButton {
    color: black;
    background-color: #FFC61E;
    border: none;
}
.mySylvacButton:hover {
    background-color: #ffb400 !important;
    color: black;
    border: none;
}
.mySylvacButton:active {
    background-color: #ffb400 !important;
    color: black;
    border: none;
}

.input {
    background: none;
    border: none;
    border-radius: 25px;
    width: 100%;
    height: 4em;
    border: 1.5px solid gray;
}
    .input:hover {
        border-color: #FFC61E;
    }

/* Dropdown Button */
.dropbtn {
    color: rgba(0, 0, 0, 0.57);
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    background: none;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.navbar-nav {
    align-items: center;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: rgba(0, 0, 0, 0.57);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

/* Change color of dropdown links on hover */
/*.dropdown-content a:hover {
            background-color: #ddd;
            color: #fbc24d !important;
        }*/

/* Show the dropdown menu on hover or click (focus-within covers the click case) */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Highlight the dropdown button when menu is visible */
.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn {
    color: #fbc24d !important;
}

.nav-link {
    font-weight: bold;
}

.nav-link:hover {
    color: #ffc107 !important;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: #ffc107 !important;
}
.dropdown:hover .dropbtn,
.dropdown:focus-within .dropbtn {
    color: #ffc107 !important;
}

.titleUnderline {
    color: #ffca2c;
    text-align: center;
    font-size: xx-large;
    margin-top: -20px;
    font-weight: bolder;
    user-select: none;
}

.pageTitle {
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    user-select: none;
}