﻿html, body {
    height: 100%;
    margin: 0;
}

.full-height-wrapper {
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.tab-content > .tab-pane {
    background-color: #fff;
    padding: 20px;
}

.custom-tabs {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#mainNavtabs {
    background-color: #f8f9fa !important;
}

.custom-tabs .nav-link {
    color: #495057;
    border: none;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.custom-tabs .nav-tabs .nav-item .nav-link.active {
    color: #fff;
    background-color: #00aa91;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

.custom-tabs .tab-content {
    padding: 1rem;
    height: 75vh;
    overflow: scroll;
    background: white;
}

.grid-item img {
    width: 2.4rem !important;
    height: auto !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
