.estilao_do_mamao {
    background-color: #ff0000;
}

/* Loading */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading.hidden {
    display: none;
}
.loading.show {
    display: flex;
}

.btn-select {
    background-color: var(--bs-body-bg)!important;
    border: var(--bs-border-width) solid var(--bs-border-color)!important;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    appearance: none;
    background-clip: padding-box;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-select:hover{
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg)!important;
    border: 1px solid #ced4da!important;
}

.btn-select:active, .btn-select:focus {
    border: 1px solid #ced4da!important;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: 0!important;
    outline-offset: 0!important;
    border-color: #86b7fe!important;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg)!important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.bootstrap-select .btn.active, .bootstrap-select .btn.show, .bootstrap-select .btn:first-child:active, :not(.bootstrap-select .btn-check)+.bootstrap-select .btn:active {
    background-color: var(--bs-body-bg)!important;
}

.bootstrap-select .filter-option-inner-inner {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
  }

.bootstrap-select .dropdown-toggle {
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.bootstrap-select .dropdown-menu.inner {
    white-space: normal !important;
    word-break: break-word;
    max-width: 100%;
}
  
.bootstrap-select .dropdown-menu li a {
    white-space: normal !important;
    word-break: break-word;
    padding-right: 1.5rem;
}

/* Info tooltip icon */
.info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.85em;
    vertical-align: middle;
    transition: color 0.2s;
}
.info-tooltip:hover {
    color: #0d6efd;
}
.tooltip-inner {
    max-width: 380px;
    text-align: left;
    padding: 10px 14px;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Resumo por Sócio - cards */
.resumo-socio-card .form-label {
    white-space: nowrap;
    margin-bottom: 0.2rem;
}
.resumo-socio-card .form-control {
    padding: 0.3rem 0.5rem;
    height: auto;
}
.resumo-socio-card h6 {
    margin-bottom: 0 !important;
}
.resumo-socio-card .form-group {
    padding: 0.5rem !important;
}

.bootstrap-select .dropdown-menu {
    height: auto !important;
    overflow: visible !important;
}
  
.bootstrap-select .dropdown-menu.inner {
    max-height: 300px !important;
    overflow-y: auto !important;
    height: auto !important;
    margin-bottom: 0px !important;
    margin-top: .5rem !important;

}