/* public/css/styles.css */
/* Reset some default browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f6f3;
}

.navbar {
    background-color: #ffffff; /* Navbar background color */
    color: #103761;
}

.top-bar {
    background-color: #3d5581; /* Darker blue for the top bar */
    padding: 13px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar p {
    margin: 0;
}

.top-bar .announce-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    display: flex;
}

.top-bar .announce-text,
.top-bar .announce-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: "Europa", sans-serif;
    font-size: 16px;
    line-height: 22px;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo h1 {
    font-size: 24px;
    font-family: "Arial", sans-serif;
    letter-spacing: 2px;
}
.help-text {
    margin-top: 6px;
}
.dropdown {
    margin-top: 6px;
    padding: 3px;
}
.continue-button {
    margin-top: 20px;
    padding: 4px;
}
/* .option-padding{
padding: 2px;
} */
.disabled {
    pointer-events: none;
    color: gray;
    cursor: not-allowed;
}
/* Apply styles only to the button with class 'previous round' */
.previous.round {
    padding: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.2s;
    position: absolute;
    left: -100px;
    top: 50%;
    /* transform: translateY(-50%); */
}
@media (max-width: 900px) {
    .previous.round {
        font-size: 20px;
        left: -50px;
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 470px) {
    .previous.round {
        font-size: 20px;
        left: -30px;
        width: 25px;
        height: 25px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
            rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    }
    .button-field button {
        padding: 12px !important;
    }
}
/* .previous.round:hover {
background-color: #ddd;
color: black;
} */
/* @media (max-width:900px){
.previous.round {
left: -30%;
}
}
@media (max-width: 730px){
.previous.round {
left: -16px;
}
} */
