/* Admin Styles */
.wrap {
    margin-right: 20px;
}
.card {
    border-radius: 8px;
}
.form-label {
    font-weight: 500;
}
.btn-group .btn {
    padding: 8px 20px;
}
@media (max-width: 767px) {
    .btn-group {
        flex-direction: column;
    }
    .btn-group .btn {
        margin-bottom: 10px;
    }
}

/* Frontend Styles */
.fmbf-button-hidden .fmbf-floating-container {
    display: none !important;
}
.fmbf-floating-container {
    position: fixed;
    top: 40%; /* Ajustado de 50% para 40% para ficar um pouco mais acima */
    transform: translateY(-50%); /* Mantido para centralizar verticalmente em relação à altura do botão */
    z-index: 9999;
}
.fmbf-floating-button {
    position: relative;
    transform: rotate(-90deg);
    padding: 15px 25px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #fff;
    border: none;
}
.fmbf-floating-button:hover {
    transform: rotate(-90deg) translateX(-10px);
    transition: transform 0.3s ease;
}
.fmbf-close-btn {
    position: absolute;
    top: -5px; /* Mantido conforme o original */
    right: -3px; /* Mantido conforme o original */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
}
.fmbf-hidden {
    display: none;
}
.fmbf-modal .modal-dialog {
    transform: translateY(10vh);
}
.fmbf-modal .modal-content {
    position: relative;
    border-radius: 15px;
}
.fmbf-modal .modal-body {
    position: relative;
    padding: 25px 20px 20px 20px; /* Mantido conforme o original */
}
.fmbf-modal .close-btn {
    position: absolute;
    top: 3px;
    right: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}