/* Styling for the admin toolbar at the top of the page */
.admin-toolbar {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 30px;
    text-align: center;
}

.admin-toolbar a {
    color: #e3e3e3;
    font-size: 1.1em;
    font-weight: 400;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.admin-toolbar a.active {
    background-color: #90CA0A;
    color: #1a1a1a;
    font-weight: 700;
}

.admin-toolbar a:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Container for the admin buttons below each art piece */
.item-admin-controls {
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin-top: 10px;
}

.item-admin-controls .btn {
    margin: 5px 0;
    width: 100%;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
}

/* Specific styling for the 'Favorite' button */
.btn-favorite.favorited {
    background-color: #90CA0A;
    border-color: #7ca808;
    color: #fff;
}

.btn-favorite.favorited:hover {
    background-color: #7ca808;
}