.dashboard-card {
    transition: transform 0.3s;
    height: 100%;
    cursor: pointer;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.dashboard-thumbnail {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-left-radius: calc(0.35rem - 1px);
    border-top-right-radius: calc(0.35rem - 1px);
}
.dashboard-thumbnail.default {
    background-color: #4e73df;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashboard-thumbnail.default i {
    font-size: 3rem;
    color: white;
}
.dashboard-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.dashboard-description {
    color: #6c757d;
    font-size: 0.9rem;
}


.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Para proporção 16:9 */
    padding-top: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Estilos para o footer */
.sticky-footer {
    bottom: 0;
    width: 100%;
    height: 60px; /* Ajuste a altura conforme necessário */
    background-color: #fff;
}

.frame-wrap {
  position: relative !important;
  height: calc(100vh - 150px) !important; /* ajuste conforme necessário */
  width: 100% !important;
  overflow: hidden !important;
}

.frame {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 48px) !important; /* aumenta a altura do iframe */
  border: 0 !important;
}

/* cobre os ~48px inferiores (onde fica a barra do Power BI) */
.frame-wrap::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 48px !important; /* ajuste fino */
  background: #0b0b0b !important; /* ou var(--background) */
  z-index: 10 !important;
}




