#wpfooter {
    top: 96vh;
    position: fixed !important;
    display: block !important;
    z-index: 99999999;
    box-shadow: 5px 5px 10px;
    background-color: white;
}

.nav-tab-active {
    background: rgba(0, 0, 0, 0) !important;
}

.nav-tab-no-active {
    display: none;
}

.message {
    margin: 10px 0;
    border: 1px solid gray;
    padding: 10px 15px;
    text-align: left;
    border-radius: 8px;
}

.message i {
    margin-right: 5px;
}

.message-success {
    color: green;
    background-color: lightgreen;
    border-color: green;
}

.message-warning {
    color: orange;
    background-color: LightGoldenRodYellow;
    border-color: orange;
}

.text-success {
    color: green;
}

.text-warning {
    color: orange;
}

.mt-1 {
    margin-top: 15px;
}

form label {
    display: block;
}

form input {
    margin-bottom: 10px;
}

.spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    flex-direction: column;
}

.custom-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.spinner-container p {
    padding-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-custom {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}