body {
    opacity: 0;
}
.alert {
    height: 5%;
    margin: 0;
}
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #e83f8b;
    color: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.notification.show {
    opacity: 1;
}
.table-full-width {
    width: 100%;
}
@media print {
    .noprint {
        display: none;
    }
    body {
        font-size: 12pt;
    }
    .content {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

.sidebar-dropdown .sidebar-link {
    padding-left: 3rem;
    font-size: 0.85rem;
}

.sidebar-item .feather {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

footer {
    position: static;
    /* Make sure the footer follows standard flow */
    margin-top: 20px;
    /* Optional: add some margin for visual spacing */
}