.admin-navbar {
    height: 100vh;
    background-color: white;
    box-shadow: 5px 0px 10px #00000029;
}

.admin-section-container {
    box-shadow: 0px 0px 10px #00000029;
}

.admin-content-row {
    justify-content: space-evenly;
    margin-top: 5vh;
}

.admin-content-section-heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 6px 4px #00000029;
}

.admin-content-section-body {
    height: 82vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.sitevine-category-list {
    padding-left: 0px;
}

.sitevine-sidebar {
    background-color: #f7f7f7;
}

.sitevine-category {
    list-style: none;
    padding: 15px;
    margin-bottom: 5px;
}

    .sitevine-category:hover {
        background-color: #e6e5e5;
    }

.admin-dashboard-button {
    background-color: #da463a;
    color: white;
}

    .admin-dashboard-button:hover {
        background-color: #da463a;
        color: white;
    }

.admin-navbar-logo-container {
    width: 100%;
    height: 10vh;
    margin: 10px 0px;
}

.sitevine-admin-navbar-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sitevine-admin-nav {
    list-style: none;
    padding: 15px;
    text-decoration: none;
    color: black;
    border-right: 2px solid #da463a;
    margin-bottom: 5px;
}

    .sitevine-admin-nav.active {
        background-color: #e6e5e5;
    }

    .sitevine-admin-nav:hover {
        background-color: #e6e5e5;
    }

    .sitevine-admin-nav:active {
        background-color: #e6e5e5;
    }

.admin-content-container {
    height: 100vh;
    overflow-y: scroll;
}

.admin-dashboard-button-light {
    background-color: white;
    color: #da463a;
}

    .admin-dashboard-button-light:hover {
        background-color: white;
        color: #da463a;
    }

.admin-content-section-heading-container-dark {
    background-color: #da463a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 18px;
    /*height: 15%;*/
    box-shadow: 0px 6px 4px #00000029;
}

.media-preview-container {
    height: 250px;
    border: 1px solid #ccc;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #555;
}

.cursor-pointer {
    cursor: pointer;
}

.file-drop-area {
    border: 2px dashed #da463a;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
}

    .file-drop-area:hover {
        background-color: #f8f9fa;
    }

    .file-drop-area img {
        width: 50px;
        height: 50px;
    }

    .file-drop-area input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

.file-drop-message {
    color: #6c757d;
}

.image-card {
    position: relative;
    width: 100%;
    /*max-width: 300px;*/
}

    .image-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.image-card:hover .overlay {
    opacity: 1;
}

.icon {
    font-size: 1.5rem;
    margin: 0.5rem;
}

    .icon i {
        color: white;
    }

.overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
