#dropdown-checkbox {
    display: none;
}

#dropdown-checkbox:checked+.dropdown-menu {
    display: block;
}

progress {
    border: 1px solid #444;
    border-radius: 4px;
    width: 100%;
    height: 10px;
    /* background-color: #444; */
    background-color: #303030;
    accent-color: coral;
    transition-property: ease;
}

.image-container {
    position: relative;
}

.image-container>a {
    display: block;
}

.copy-link-container {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 100%;
    text-align: right;
}

.copy-link-btn {
    display: inline-block;
    width: max-content;
    border: 0;
    color: #fff;
    font-size: 12px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-decoration: none;
    line-height: 0;
}

.copy-link-btn:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 1);
    text-decoration: none;
}

.message {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: #000000a3;
    color: #fff;
    padding: 5px 10px;
    line-height: 1.5;
    border-radius: 5px;
    transition: .6s;
    opacity: 0;
    visibility: hidden;
}

.lh-0 {
    line-height: 0;
}

.fs-7 {
    font-size: 0.7rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Set the width of the gallery */
    width: 100%;
}

.image-gallery img {
    width: 100%;
    max-width: 300px;
    /* Set the height of the images */
    height: 190px;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* margin: 10px; */
    border-radius: 5px;
}