.custom-select-wrapper {
    position: relative;
    width: 80px; /* Largura desejada */
}

.custom-select {
    position: relative;
    font-family: 'opensans-bold', sans-serif;
    cursor: pointer;
    user-select: none;
}

.custom-select-trigger {
    position: relative;
    display: block;

    background: transparent;
    color: #fff;
    border: none;
    width: 100%;
}

.custom-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #333;
    border: 1px solid #fff;

    margin-left: 30%;
    margin-top: 10px;
    width: 75px;
}

.custom-options.active {
    display: block;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px;
    background: #333;
    color: #fff;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.custom-option:last-child {
    border-bottom: none;
}

 .maintenance-mode {
     background-color: #ff6347;
     color: #fff;
     padding: 10px 0 15px 0;
     text-align: center;
     font-size: 18px;
     margin-bottom: 25px;
 }

.maintenance-mode p {
    margin: 0;
}

.maintenance-mode::before {
    content: "⚠️";
    font-size: 24px;
    margin-right: 10px;
}
