﻿#uploadModal {
    top: 10%;
}

.modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}

.modal-footer {
    position: sticky;
    bottom: 0;
    background-color: white;
}

.upload-block {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
}

.upload-box {
    border: 2px dashed #B9256A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

    .upload-box.dragover {
        background: #fff0f5;
    }

.preview-box {
    display: none;
}

    .preview-box.show {
        display: none;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px;
        margin-top: 20px;
        position: relative;
    }

.progress-bar {
    transition: width 0.3s ease, background-color 0.3s ease;
}


.remove-block-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

    .remove-block-btn:hover {
        color: #d63384;
    }

.remove-btn {
    position: absolute;
    top: 45px;
    right: 10px;
    border: 1px solid #000; /* Add a 1px solid black border */
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex; /* To center the 'x' horizontally and vertically */
    justify-content: center;
    align-items: center;
    line-height: 0; /* Adjust line-height to help with centering */
}

    .remove-btn:hover {
        color: #d63384;
    }

input[type="number"] {
    background: #fff !important;
    border: 2px solid #6C738D !important;
    color: black !important;
}

    input[type="number"]:focus,
    input[type="number"]:focus-visible {
        color: black !important; /* Ensure black text color on focus */
        /* Adjust other focus styles as needed */
    }

.fw-semibold {
    color: #B9256A !important;
    font-weight: bold !important;
    font-size: 14px !important;
    margin-left: -1%;
}

.lb-add-img {
    font-size: 16px;
    color: #6C738D;
}

.save-btn {
    background-color: #d63384;
    color: #fff;
    font-weight: bold;
    width: 10%;
}

.thumb-img {
    max-width: 100px;
    border-radius: 10px;
}

.custom-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

    .custom-close-btn:hover {
        color: #ff0000;
    }

.d-flex-collection-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mb-1 {
    margin-bottom: 1px;
}

.mt-1 {
    margin-top: 1px;
}

.mb-2 {
    margin-bottom: 2px;
}

.mt-2 {
    margin-top: 2px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-10 {
    margin-top: 10px;
}

.ms-10 {
    margin-left: 10px;
}

.text-danger {
    color: #F00044;
}
