.img-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1000px) {
    #kt_app_wrapper {
        margin-left: 10px;
        margin-right: 10px;
    }
}

[data-bs-theme]:not([data-bs-theme="dark"]) body .logo-white {
    display: none;
}
[data-bs-theme="dark"] body .logo-white {
    display: block;
}
[data-bs-theme]:not([data-bs-theme="dark"]) body .logo-dark {
    display: block;
}
[data-bs-theme="dark"] body .logo-dark {
    display: none;
}
.table:not(.table-bordered) td:first-child, .table:not(.table-bordered) th:first-child, .table:not(.table-bordered) tr:first-child {
    padding-left: 10px;
}
.table:not(.table-bordered) td:last-child, .table:not(.table-bordered) th:last-child, .table:not(.table-bordered) tr:last-child {
    padding-right: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    width: 100%;
}
.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Matches the width */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;

}
.grid-item-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    padding: 5px 0;
    font-size: 0.9rem;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

#document-media-card-body, #document-media-card-footer {
    display: none;
}
