@import url('https://fonts.googleapis.com/css?family=Ropa+Sans');

body {
    background: transparent;
    /*url(./fond.png);*/
    color: rgb(12, 12, 12);
    font-family: 'Ropa Sans', sans-serif;
    font-size: 2rem !important;
    overflow: hidden;
}


/* DRAG AND DROP */

.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    transition: 0.2s;
}

.choose-file-button {
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 18px;
    /* text-transform: uppercase; */
}

.file-message {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;

}

.mt-100 {
    margin-top: 100px;
}

#server-response {
    font-size: 15px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-card.active {
    transform: scale(1.05); /* Slightly enlarge the active image */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6), 0 0 30px rgba(0, 123, 255, 0.3); /* Gradient shadow effect */
    border: 3px solid transparent; /* For spacing */
}

.image-card.active::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6), 0 0 30px rgba(0, 123, 255, 0.3); /* Gradient shadow effect */
    z-index: 1;
    pointer-events: none;
}

.image-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2; /* Ensure card-body is on top of the shadow */
}

.image-card .card-body button,
.image-card .card-body label {
    margin: 0;
}

.image-count {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.custom-checkbox label {
    font-size: 0.9rem;
}

.file-message.error {
    color: red;
}

.global-options {
    margin-bottom: 20px;
}

.global-options label {
    font-weight: bold;
}

.global-options .custom-checkbox label {
    font-size: 1rem;
    margin-left: 5px;
}