.publish_content {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    gap: 1rem;
}

.nav {
    width: 30%;
    border: 1px solid #ffcc00;
    padding: 1em;
    border-radius: 5px;
    position: relative;
    background-image: url(../../images/welcome/publish_img.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.nav a {
    color: #438D5A;
}

.nav a:hover {
    background: #fff2d5;
    border: 1px solid #f7dd77;
}

.tab-content {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 10%);
    background-color: #fff;
    padding: 0.75rem;
    margin: 0.5rem 0rem 2rem 0rem;
    color: #4A4A4D;
    min-height: 70vh;
}

.dir_item .card-body {
    text-align: center;
    font-size: 1.5rem;
    color: #e5bc1c;
}

.dir_item:hover,
.file_item:hover {
    transform: translate(-2px, -3px);
    transition: all 0.2s ease-in;
    color: gray;
}

.card {
    box-shadow: 0px 0px 5px 0px rgb(45 42 40 / 10%);
    border-bottom: 0.4rem solid #f9cf288f;
}

.card-body {
    padding: 0.5rem;
}

.card-body img {
    width: 1.5rem;
}

@media (max-width: 768px) {
    .publish_content {
        padding: 1rem 0;
    }
}

@media (max-width: 767px) {
    .publish_content {
        display: block;
        position: relative;
    }

    .publish_content nav {
        display: none;
        position: absolute;
        top: 80px;
        z-index: 1;
        background-color: #FFD875;
        width: 75%;
        height: 60%;
    }

    .nav_collapse {
        display: block;
        background: #FFD875;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        line-height: 20px;
        font-size: 2rem;
        color: #333;
    }
}