#panel-link:hover {
    color: rgba(13, 110, 253, 1)!important;
    border-radius: 5px;
    background-color: rgba(248, 249, 250, 1);
}
#panel-data:hover {
    background-color: rgba(13, 110, 253, 1);
}
/* #panel-data{
    min-height: 100px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
#panel-data p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#img_dashboard{
    max-height: 50px;
    width: auto;
    max-width: 100%;
}
#ico_camp{
    width: 3rem;
}
/* #texto_acortado{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */
#ico-campaing{
    width: 5px;
    height: 50px;
}
.form-control::placeholder {
    color: #6c757d;
}
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.custom-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-colapso:hover {
    background-color: rgba(248, 249, 250, 0.3); /* Gris claro */
}
/* .panel-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
} */
.rotate-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
    background-color: #52575c; /* Color de fondo oscuro */
    border-color: #343a40; /* Color del borde, si es necesario */
}

.dropdown-menu .dropdown-item {
    color: #f8f9fa; /* Color claro para el texto */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #495057; /* Color más oscuro para el fondo en hover */
    color: #ffffff; /* Color para el texto en hover, si es necesario */
}

.dropdown-menu .dropdown-divider {
    border-top-color: #000000; /* Color para los divisores */
}

.dropdown-menu .dropdown-item.text-danger {
    color: #ff0019; /* Color para los elementos con clase text-danger */
}

/* Estilo para todos los ítems del dropdown al hacer hover, excepto Cerrar Sesión */
.dropdown-menu .dropdown-item:hover:not(.text-danger) {
    color: rgba(13, 110, 253, 1) !important;
    background-color: rgba(248, 249, 250, 1);
    border-radius: 5px;
}

.dropdown-menu .dropdown-item.text-danger {
    color: #ff0019 !important;; /* Texto blanco para Cerrar Sesión */
}
/* Estilo específico para el ítem de Cerrar Sesión al hacer hover */
.dropdown-menu .dropdown-item.text-danger:hover {
    background-color: #ff0019; /* Fondo rojo para Cerrar Sesión */
    color: rgba(248, 249, 250, 1) !important;; /* Texto blanco para Cerrar Sesión */
    border-radius: 5px;
}
.dropdown-menu .dropdown-item.text-muted.small,
.dropdown-menu .dropdown-item.text-muted.small:hover {
    background-color: transparent; /* Mantiene el fondo igual */
    color: #93a3b1 !important; /* Color gris claro de Bootstrap para text-muted */
    cursor: default; /* Cambia el cursor a default */
    border-radius: 5px;
}

.link-body-emphasis.text-danger:hover {
    background-color: #dc3545; /* Color de fondo rojo */
    color: white !important; /* Color de texto blanco */
}

.p-0.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de líneas que quieres mostrar */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* 3 líneas * line-height */
    white-space: normal; /* Importante para permitir el wrap */
    height: calc(1.5em * 3); /* Ajusta esto según el tamaño de línea de tu texto */
}
.fw-bold.p-0 {
    height: calc(1.5em * 2); /* Ajusta esto según el tamaño de línea de tu texto */
}

.btn-flotante-container {
    position: fixed;
    bottom:  70px;
    right: 20px;
    z-index: 1000; /* Asegúrate de que el z-index sea suficientemente alto para que el botón esté sobre otros elementos */
}
#contenedorCrearCampana {
    display: none;
}
.btn-flotante-container .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Hace el botón circular */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px; /* Ajusta esto según el tamaño que prefieras para el signo + */
    padding: 0;
    margin: 0;
}
.btn-flotante-container .btn .fab__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0; /* Asegurarse de que no haya margen exterior */
}
.container {
    flex: 1; /* Hace que el contenedor crezca y ocupe el espacio disponible, empujando el footer hacia abajo */
}
#contededorAddStrategy {
    display: none;
}