img {
    pointer-events: none; /* Disables all interactions, including hover */
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: none;
  }

/* floating bubbles background */

.bubbles {
    height: 100%;
    width: 100%;
    position: absolute;
}

.bubbles div {
    height: 80px;
    width: 80px;
    border: 5px solid rgb(229 132 27 / 25%);
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: 10%;
    animation: 4s linear infinite;
}

div .dot {
    height: 15px;
    width: 15px;
    border-radius: 50px;
    background: rgb(229 132 27 / 5%);
    position: absolute;
    top: 20%;
    right: 20%;
}

.bubbles div:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: animatebubbles 8s linear infinite;
}

.bubbles div:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: animatebubbles 10s linear infinite;
}

.bubbles div:nth-child(3) {
    top: 40%;
    left: 40%;
    animation: animatebubbles 3s linear infinite;
}

.bubbles div:nth-child(4) {
    top: 66%;
    left: 30%;
    animation: animatebubbles 7s linear infinite;
}

.bubbles div:nth-child(5) {
    top: 90%;
    left: 10%;
    animation: animatebubbles 9s linear infinite;
}

.bubbles div:nth-child(6) {
    top: 30%;
    left: 60%;
    animation: animatebubbles 5s linear infinite;
}

.bubbles div:nth-child(7) {
    top: 70%;
    left: 20%;
    animation: animatebubbles 8s linear infinite;
}

.bubbles div:nth-child(8) {
    top: 75%;
    left: 60%;
    animation: animatebubbles 10s linear infinite;
}

.bubbles div:nth-child(9) {
    top: 50%;
    left: 50%;
    animation: animatebubbles 6s linear infinite;
}

.bubbles div:nth-child(10) {
    top: 45%;
    left: 20%;
    animation: animatebubbles 10s linear infinite;
}

.bubbles div:nth-child(11) {
    top: 10%;
    left: 90%;
    animation: animatebubbles 9s linear infinite;
}

.bubbles div:nth-child(12) {
    top: 20%;
    left: 70%;
    animation: animatebubbles 7s linear infinite;
}

.bubbles div:nth-child(13) {
    top: 20%;
    left: 20%;
    animation: animatebubbles 8s linear infinite;
}

.bubbles div:nth-child(14) {
    top: 60%;
    left: 5%;
    animation: animatebubbles 6s linear infinite;
}

.bubbles div:nth-child(15) {
    top: 90%;
    left: 80%;
    animation: animatebubbles 9s linear infinite;
}

@keyframes animatebubbles {
    0% {
        transform: scale(0) translateY(0) rotate(70deg);
    }

    100% {
        transform: scale(1.3) translateY(-100px) rotate(360deg);
    }
}


/* delivery area popup */
.closedeliverylocation {
    margin: auto;
    bottom: 20px;
    width: 200px;
}

#select-loc-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    color: #000b1c;
}

#map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 3 px solid #ffffff;
    padding: 10px;
    overflow: hidden;
}

#map {
    height: 368px;
    width: 100%;
    z-index: 1;
    position: relative;
}

#search-container {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 8px;
    align-items: center;
    padding-left: 10px;
    width: 80%;
}

#continue-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 8px;
    align-items: center;
    width: 80%;
}

#address {
    flex: 1;
    border: solid 1px #AD2023;
    background: #fff;
    padding: 0 8 0 8px;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 25px;
    padding-left: 10px;
    height: 44px;
}

#track-me-button {
    padding: 8px 12px;
    font-size: 15px;
    background-color: #AD2023;
    color: #02112b;
    border: none;
    right: 5px;
    top: 14px;
    height: 36px;
    width: 36px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    position: absolute;
}

#track-me-button:hover {
    color: #fff;
}



.btn-continue {
    margin: auto;
    color: #000b1c;
    background-color: #AD2023;
    border-color: #AD2023;
    line-height: 20px;

    padding: 15px 30px 14px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.btn-continue:hover {
    color: #000b1c;
    background-color: #AD2023;
    border-color: #AD2023;
}



.btn-continue.disabled,
.btn-continue:disabled {
    cursor: not-allowed;
    color: #231e13;
    background-color: #F7A291;
    border-color: #F7A291;
}





/* FAQs */
.faq-category {
    margin-bottom: 30px;
}

.faq-category h6 {
    font-weight: 600;
    margin: 0 0 10px;
    padding: 10px;
    background-color: #262626;
    border-left: 5px solid #e5841b;
    padding: 13px 15px;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
}

.faq-item {
    background: #1c1b19;

    padding: 10px;
    border-bottom: 1px solid #353530;

}

.faq-item h3 {
    font-weight: 400;
    font-size: 15px;
    margin: 0 0 0 0px;
    color: #ffffff;
    cursor: pointer;
}

.faq-item p {
    margin: 0;
    display: none;
    color: #ffffff;
}

.faq-item.active p {
    display: block;
}

.faq-item.active h3 {
    color: #e5841b
}

.faq-item.hidden {
    display: none;
}

.faq-toggle {
    float: right;
}

#searchInput {
    background: #1c1b19;
    border: solid 1px #1c1b19;
    color: white;
}


.resetsearch {
    float: right;
    position: relative;
    top: -39px;
    right: 5px;
    font-size: 14px;
    background: #e5841b;
    border: none;
    color: #ffffff;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.resetsearch:hover {
    background: #353530;
    color: white;

}

.no-match-message {
    color: #999;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
}

.faq-category {
    position: relative;
}

.hidden {
    display: none;
}

.faq-category .faq-item.hidden {
    display: none;
}

.howto-iconcolor {
    color: #e5841b;
}

.fw-400 {
    font-weight: 400;
}


.prodPriceBefore {
    font-size: 19px;
    text-decoration: line-through;
    color: red;
}

.review-link,
.wishlist-link {
    color: #000;
}

.review-link:hover,
.wishlist-link:hover {
    color: #e5841b;
}

.review-link .disabled {
    color: #e2e2e2
}


.viewdtlsreview-link,
.viewdtlswishlist-link {
    color: #ffffff;
}

.viewdtlsreview-link:hover,
.viewdtlswishlist-link:hover {
    color: #e5841b;
}

.viewdtlsreview-link .disabled {
    color: #e2e2e2
}

.wishlist-link i,.viewdtlswishlist-link i {
    color: #e5841b;
}

.text-orange-theme {
    color: #e5841b;
}

.text-white-theme {
    color: #ffffff;
}

.text-dark-theme {
    color: #1c1b19;
}

.productviewing-table {
    color: #aeaeae;
    ;
}


.summary .viewdtls ins .product-Price-amount {
    color: #ffffff;
}


/* Custom Megamenu for Navigation */
/* General styling for the mega-menu submenus with scroll */
.mega-submenu-brands,
.mega-submenu-types,
.mega-submenu-country {
    max-height: 482px;
    /* Adjust based on your design */
    overflow-y: auto;
}

/* Styling the scrollbar */
.mega-submenu-brands::-webkit-scrollbar,
.mega-submenu-types::-webkit-scrollbar,
.mega-submenu-country::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
    height: 5px;
    /* Height of horizontal scrollbar */
}

/* Styling the scrollbar track (background of the scrollbar) */
.mega-submenu-brands::-webkit-scrollbar-track,
.mega-submenu-types::-webkit-scrollbar-track,
.mega-submenu-country::-webkit-scrollbar-track {
    background-color: #353530;
    /* Light grey background */
    border-radius: 10px;
    /* Rounded corners for the track */
}

/* Styling the scrollbar thumb (the draggable part of the scrollbar) */
.mega-submenu-brands::-webkit-scrollbar-thumb,
.mega-submenu-types::-webkit-scrollbar-thumb,
.mega-submenu-country::-webkit-scrollbar-thumb {
    background-color: #edae46;
    /* Darker grey color */
    border-radius: 10px;
    /* Rounded corners for the thumb */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Hover effect on the scrollbar thumb */
.mega-submenu-brands::-webkit-scrollbar-thumb:hover,
.mega-submenu-types::-webkit-scrollbar-thumb:hover,
.mega-submenu-country::-webkit-scrollbar-thumb:hover {
    background-color: #e5841b;
    /* Darker shade on hover */
}

/* General Search Results Container */
.search-results {
    position: absolute;
    z-index: 9999;
    background-color: #1c1b19;
    width: 100%;
    /* Matches parent width */
    margin-top: 10px;
    border-top: solid 2px #e5841b;
    box-sizing: border-box;
    color: #ffffff;
    /* White text for visibility */
}

/* Search Results Table */
.search-results table {
    width: 100%;
    border-collapse: collapse;
    /* Clean table borders */
    table-layout: fixed;
    /* Ensures all table columns have equal width */
}

/* Table Rows - General */
.search-results tr {
    border-bottom: 1px solid #353530;
    /* Adds border below each result */
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

/* Last Row - Remove Border */
.search-results tr:last-child {
    border-bottom: none;
}

/* Styling for Static Rows (No Hover Effect) */
.result-no-hover {
    background-color: #1c1b19;
    /* Matches container background */
    font-size: 14px;
    text-align: left;
    color: #edae46;
    /* Highlighted label color */
    cursor: default;
    /* No pointer cursor */
    border-bottom: 1px solid #353530;
    /* Consistent border for static rows */
}

.result-no-hover span {
    margin: 2px 10px;
    font-weight: normal;
    color: #e5841b;
}


.zero-result p {
    color: #bcbcbc;
    padding: 0px 10px;
    font-weight: normal;
}

.zero-result i {
    color: #e5841b;
}


.result-no-hover a {
    margin: 2px 10px;
    font-weight: normal;
    font-size: 14px;
}

/* No Hover Effect for Static Rows */
.result-no-hover:hover {
    background-color: #1c1b19;
    /* No change on hover */
    cursor: default;
    /* Static cursor */
}

/* Styling for Hoverable Rows */
.result-hover {
    background-color: #1c1b19;
    /* Default background */
    color: #ffffff;
    /* Text color for hoverable rows */
    transition: background-color 0.3s ease-in-out;
    /* Smooth hover effect */
}

/* Hover Effect for Interactive Rows */
.result-hover:hover {
    background-color: #333333;
    /* Darker background for hover */
    cursor: pointer;
    /* Pointer cursor for interactivity */
}

.result-hover:hover a {
    color: #edae46;
    /* Darker background for hover */
    cursor: pointer;
    /* Pointer cursor for interactivity */
}

/* Table Data Styling */
.search-results td {
    vertical-align: top;
    /* Aligns content at the top */
    padding: 10px 5px;
    /* Adds spacing */
    color: #ffffff;
    /* Ensures text is visible */
}



/* Styling for result-details-td (Details Column) */
.result-details-td {
    width: 90%;
    /* Set details column width to 80% */
}

/* Image Styling */
/* Image Styling */
.search-results img {

    /* Adds rounded corners to the image */

    /* Border around images */
    max-width: 100%;
    /* Makes the image responsive */
    height: auto;
    /* Keeps the aspect ratio of the image */
    display: block;
    /* Makes the image a block element */
    margin-left: auto;
    /* Center image horizontally */
    margin-right: auto;
    /* Center image horizontally */
    border: solid 1px #1c1b19;
    background-image: linear-gradient(#262626, #1c1b19);
}

/* Center the image vertically within its table cell */
.result-img-td {
    width: 10%;
    /* Set image column width to 20% */
    vertical-align: middle;
    /* Centers the content vertically */
    text-align: center;
    /* Centers the image horizontally */
    padding: 0;
    /* Optional: removes extra padding inside the td */
}

/* Title Link Styling */
.result-details-title a {
    color: #ffffff;
    /* Highlighted color for titles */
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    /* Removes underline */
    transition: color 0.3s ease;
    /* Smooth color change on hover */
}

.result-details-title a:hover {
    color: #edae46;
    /* Changes to gold on hover */
}

/* Ensure Consistent Margins for Paragraphs */
.search-results p {
    margin: 0;
}


.search-results p.result-td-info {
    font-size: 11px;
    color: #bcbcbc;
    line-height: 1;
}

.search-results p.result-td-title {
    font-size: 14px;
}

.selected {
    background-color: #333333;
    /* Default background */
    color: #ffffff;
    /* Text color for hoverable rows */
    transition: background-color 0.3s ease-in-out;
    /* Smooth hover effect */
}

.selected a {
    color: #edae46;
    /* Darker background for hover */
    cursor: pointer;
    /* Pointer cursor for interactivity */
}

















/* Custom Product Viewing */
.productcarousel-container {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.homecarousel-container {
    max-width: none;
}

.productcarousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;

}

.productcarousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.productcarousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f6f9ff;
    /* Default background color behind transparent images */
}

.productcarousel-slide img {
    width: 100%;
    display: block;
    transition: transform 0.2s ease;
}

.productcarousel-slide:hover img {
    cursor: zoom-in;
}

.homeproductcarousel-slide:hover img {
    cursor:default;
}

.zoomproducts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 200%;
    display: none;
    cursor: crosshair;
}

.productcontrolcontainer {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    transform: translateY(-50%);
}

.productcontrol {
    background-color: rgba(117, 117, 117, 0.2);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.productcontrol:hover {
    background-color: rgba(0117, 117, 117, 0.4);
}

.productthumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.homeproductthumbnails {
    z-index: 1;
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: -70px;
    margin-bottom: 60px;
}


.productthumbnail {
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #f6f9ff;
    /* Same background as productcarousel-slide */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    /* Ensure productthumbnails are consistent size */
    height: 50px;
}

.homeproductthumbnail {
    width: 50px;
    /* Ensure productthumbnails are consistent size */
    height: 50px;
}





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

.productthumbnail.active {
    border: 2px solid #e5841b;
}




.zoomproducts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 200%;
    background-color: #f6f9ff;
    display: none;
    cursor: crosshair;
}

.productcarousel-slide:hover img {
    cursor: zoom-in;
}

.homeproductcarousel-slide:hover img {
    cursor: default;
}


/* Small screens (mobile) */
@media (max-width: 576px) {
    .homeproductthumbnails {
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .homeproductthumbnail {
        width: 10px;
        height: 10px;
    }
}

/* Extra Small Devices (portrait phones, max-width: 575.98px) */
@media (max-width: 575.98px) {
    .homeproductthumbnails {
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .homeproductthumbnail {
        width: 20px;
        height: 20px;
    }

}

/* Small Devices (landscape phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .homeproductthumbnails {
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .homeproductthumbnail {
        width: 30px;
        height: 30px;
    }

}

/* Medium Devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .homeproductthumbnails {
        margin-top: 20px;
        margin-bottom: -40px;
    }
    .homeproductthumbnail {
        width: 40px;
        height: 40px;
    }
  

}

/* Large Devices (laptops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .homeproductthumbnails {

        margin-top: -70px;
        margin-bottom: 60px;
    }
    .homeproductthumbnail {
        width: 50px;
        height: 50px;
    }
   
}

/* Extra Large Devices (desktops, 1200px and above) */
@media (min-width: 1200px) {
    .homeproductthumbnails {
        margin-top: -70px;
        margin-bottom: 60px;
    }
    .homeproductthumbnail {
        width: 50px;
        /* Ensure productthumbnails are consistent size */
        height: 50px;
    }
    
}


.outofstockproductsbanner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    max-height: 110px;
}

.onsaleproductsbanner {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    max-height: 30px;
}


.alert-tiktok {
    color: #0e0e0e;
    background-color: #ffeac7;
    border-color: #ffcf9b;
}

.cart-list h6 {
    white-space: nowrap;           /* Prevent line breaks */
    overflow: hidden;              /* Hide overflowing text */
    text-overflow: ellipsis;       /* Add "..." when the text overflows */
    max-width: 100%;               /* Make sure the element width doesn't exceed its container */
}


.cartlinks {
    color: #0e0e0e;;
    text-decoration: underline;
}
.alert-disclaimer {
    color: #0e0e0e;
    font-size: 12px;
    line-height: 16px;
    background-color: #fff1e2;
    border-color: #ffe5ca;
}

.disclaimer-products {

    font-size: 12px;
    line-height: 16px;
    color: #ec0928;

}



.limitedtimespan {
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 5px;
    background: #ec0928;
    color: #ffffff;
    line-height: 18px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 400;
}


del {
    text-decoration: none;
}



.filter-options {
    width:100%; font-size:13px
}

.filter-options > label {
    position: absolute; top: 0px; left: 35px;
}

.filter-options > select {
    padding: 20px 15px 5px 15px;
}


#show-more-button-div {
    margin-bottom: 40px;
}









div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
    background: rgba(0, 0, 0, .80);
}

  .swal2-popup {
    background-color: #1c1b19 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: none;
    font-size: 14px !important;
  }

  .swal2-modal {
    border-radius: 0px;
  }
  .swal2-title {
    color: #f5f5f5 !important;
  }

  .swal2-content {
    color: #d1d1d1 !important;
  }

  .swal2-input, 
  .swal2-textarea {
    background-color: #3c3c3c !important;
    color: #ffffff !important;
    border: none !important;
  }

  .swal2-confirm {
    background-color: #e5841b !important;
    color: #fff !important;
    border-radius: 0px;
    font-size: 15px;
    line-height: 18px;
    padding: 12px 25px 12px 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }



  .swal2-cancel {
    background-color: #353530 !important;
    color: #fff !important;
    border-radius: 0px;
    font-size: 15px;
    line-height: 18px;
    padding: 12px 25px 12px 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }

  .swal2-confirm:focus, 
  .swal2-cancel:focus {
    box-shadow: none;
  }

  .swal2-icon {
    color: #f39c12 !important;
  }











  /* Cookie consent banner styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1c1b19;
    border-top: solid 3px #e5841b;
    color: #fff;
    padding: 15px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    font-family: Arial, sans-serif;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-consent-content a {
    color: #e5841b;
    text-decoration: none;
}

.cookie-consent-btn {
    background-color: #e5841b;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    margin: 10px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px;
}

.cookie-consent-btn:hover {
    background-color: #dfa544;
}




/* Style for the share button container */
.custom-share-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
}


.custom-facebook-button, .custom-twitter-button {
    text-decoration: none;
    color: white;
    padding: 0px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    height: 26px;
}

/* Custom Facebook button */
.custom-facebook-button {
    background-color: #3b5998;

}



/* Custom Twitter button */
.custom-twitter-button {
    background-color: #282828;
}


/* Add hover effects */
.custom-facebook-button:hover {
    background-color: #2d4373;
    color:rgb(255, 255, 255);
}

.custom-twitter-button:hover {
    background-color: #313131;
    color:rgb(255, 255, 255);
}












#password-strength.weak {
    color: #ec0928;
}
#password-strength.medium {
    color: #e5841b;
}
#password-strength.strong {
    color: #28a745;
}



.showhide {
    position: absolute;
    right: 30px;
    top: 43px;
    font-size: 16px;
    height: 30px;
    width: 30px;
    text-align: center;
}



.cancelorderp {
    font-size: 14px;
    margin-bottom:10px
}



.custom-accordion {


    margin-top: 20px;
    overflow: hidden;
}

.accordion-item {
    
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    color: #fff;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    background-color: #313131;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #313131;

}

.accordion-body {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    color: #333;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-body ul {
    list-style: disc;
    margin-left: 20px;
}

.accordion-body ol {
    list-style: decimal;
    margin-left: 20px;
}

.accordion-header.active {
    background-color: #282828;
}





div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
    background: rgba(0, 0, 0, .8);
}


.file-dropbox {
    min-height: 184px;
    border: 1px dashed #e5841b;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #262626;
    position: relative;
}
.file-dropbox:hover {
    background-color: #1c1b19;
}
.dropbox-text {
    font-size: 16px;
}
.file-preview {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
.file-preview img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    margin-top: 10px;
}