.content_description {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.content_select {
    margin-bottom: 25px;
}

.content_select select {
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 2px 2px 5px #f0f0f0;
    background: #fff;
    width: 100%;
}

/* Creates the overview layout */
.content_overview {
    --image-width: 150px;
    --gap: 10px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
}

/* Item container */
.content_container {
    background: #fff;
    box-shadow: 0px 5px 5px rgba(0,0,0, 0.05);
    padding: 10px;
    width: max-content;
    height: max-content;
    position: relative;
}

/* Image */
.content_container img {
    aspect-ratio: 1 / 1; /* Ensures square shape */
    max-width: var(--image-width);
    object-fit: cover;
    background-size: cover;
    display: block;
}

.content_info {
    display: block;
    text-align: center;
    font-size: 8pt;
    width: max-content;
    margin: 15px 5px;
    padding: 0px 10px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
}

.download_actions {
    display: flex;
    justify-content: space-between;
}

.download_actions a {
    text-align: center;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 9pt;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0,0,0, 0.1);
}

.download_actions a:last-child {
    border: 0;
}