main {
    margin: 0 auto;
    width: 100%;;
}

.embed-container {
    height: 100vh; 
    overflow: hidden;
    background-color: #EAEAEA;
    /* background-image: url('../assets/background.webp'); */
}

section#report-container {
    height: 100vh;
    width: calc(100vw - 20px);
    margin-left: 20px;
}

iframe {
    border: none;
}

.light-blue-navbar {
    background-color: #001D77;
    /* background: rgb(21,113,165);
    background: linear-gradient(40deg, rgba(21,113,165,1) 0%, rgba(50,169,185,1) 66%, rgba(174,223,227,1) 100%); */
    display: flex;
    flex-direction: row;
    align-items: center;
   
}

.navbar-item {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.navbar-exit {
    color: white;
    padding: 10px;
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.navbar-exit:hover {
    color: white;
    text-decoration: none;
}

.limiter {
    width: 100%;
    height: 100vh; 
    margin: 0 auto;
    background-color: #25265da1;    background-size: cover;
    background-position: bottom;
    background-position-y: -190px;
  }

.tables-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 350px;
    height: 100vh;
    padding: 2rem;
}

.list-group-scroll{
    max-height: 30rem;
    overflow-y: auto;
    overflow-x: hidden;
}


.list-group-item {
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.list-group-item:hover {
    background-color: #f1f1f1;
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.btn-close {
    position: relative;
    z-index: 1050;
}

.modal-dialog-custom{
    max-width: 60rem;
    display: flex;
    overflow: hidden;
    height: 100%;
    align-items: center;
}

.home-table {
    display: flex;
    flex-direction: column;
    background-color: #eaeaeab0;
    width: 30%;
    height: 80%;
}

.home-table-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #25265d;
    color: white;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    height: 70px;
}

.home-table-header p {
    margin: 0;
}

.home-table-header i {
    font-size: 0.7rem;
    color: #b0aeae;
}

.home-table-body {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    color: rgba(76, 87, 115, 255);
    font-weight: bold;
    overflow-y: scroll;
    height: 90%;
}

.home-table-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    margin: 0.3rem 0;
    background-color: #eaeaead5;
    color: rgba(76, 87, 115, 255);
    font-weight: bold;
    border: 1px solid #25265d;
    cursor: pointer;
    height: 13%;
}

.home-table-card i {
    font-size: x-large;
}

.report-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
    max-width: 90%;
}

.report-description p {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}


.notification-container {
    position: absolute; /* O fixed si quieres que se mantenga en la pantalla */
    top: 20px; /* Ajusta la posición vertical */
    right: 20px; /* Ajusta la posición horizontal */
    cursor: pointer; /* Para que parezca un elemento clickeable */
}
.notification-icon {
    position: relative; /* Para posicionar el contador encima */
    font-size: xx-large;
    color: #25265d;
}
.notification-count {
    position: absolute;
    top: -5px; /* Ajusta la posición vertical del contador */
    right: -5px; /* Ajusta la posición horizontal del contador */
    background-color: red; /* Color de fondo del contador */
    color: white;
    border-radius: 50%; /* Forma circular */
    padding: 2px 5px; /* Ajusta el padding del contador */
    font-size: 12px; /* Tamaño de la fuente del contador */
    display: inline-block; /* Para que el ancho se ajuste al contenido */
    min-width: 15px; /* Para que tenga un ancho mínimo si no hay número */
    text-align: center;
}

.modal-open .modal {
    overflow: hidden;
}