
/*# sourceMappingURL=custom.min.css.map */

.custom-card1{
    background-color: #ebf7ec   ;}
   
.custom-card2{
    background-color: #ebf7ec;
    min-height: 70vh;
    max-height: 100vh;
}
.scrollable {
    max-height: 250px; /* Adjust the height as per your need */
    overflow: scroll;
    /* background-color: #ebf7ec   ; */
   
}
   
.scrollable::-webkit-scrollbar {
    width: 0px; /* Reduce scrollbar width */
}


.image-preview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.image-wrapper {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.image-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.remove-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

.remove-button:hover {
    background-color: darkred;
}

.file-dropzone {
    border: 2px dashed #ccc;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #f9f9f9;
}

.file-dropzone p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.file-dropzone:hover {
    background-color: #f1f1f1;
}

.file-dropzone.dragging {
    background-color: #e6f7ff;
    border-color: #1a73e8;
}

/* Hide the actual file input */
#image-input {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: none;
}

.image-preview {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.image-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ccc;
}
       
.error{
    color: red;
}     
   
.swiper-slide img {
    width: 100%;
    height: 200px; /* Set a fixed height */
    object-fit: contain; /* Adjust the image to fit within the given dimensions */
}

.nav-slide-item img {
    width: 100%;
    height: 100px; /* Set a smaller fixed height for thumbnails */
    object-fit: contain; /* Keep the aspect ratio intact */
}
