/*Write your custom css in this file.*/

.modal-img {
    display: flex;
    gap: 3px;
    align-items: center;
    flex-wrap: wrap;
}

.modal-img img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
}

#detailModal .modal-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 11px;
}

#detailModal .modal-header button {
    border: none;
    background: transparent;
    font-size: 25px;
    
}

#detailModal .modal-footer button{
    background: #6690F4;
    border: none;
    color: white;
    padding: 6px 20px;
    border-radius: 3px;
}

#detailModal .modal-footer{
    padding: 10px 11px;
}

#imageModal.modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  #imageModal.modal.show {
    opacity: 1;
    visibility: visible;
  }

  #imageModal .modal-content {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
    transform: scale(0.9);
  }

  #imageModal.modal.show .modal-content {
    transform: scale(1);
  }

  #imageModal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
  }

  .variation-new{
    display: flex
    ;
        gap: 22px;
        align-items: center;
  }

  .variation-new label{
    margin-bottom: 0;
  }

  table.dataTable.b-b-only tbody td {
    border: none;
    border-bottom: 1px solid #f1f1f5;
    padding: 10px 0 !important;
}

/* Dashboard Tabs Hover  */
.box-content:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.widget-container .rounded-bottom {
    padding: 8px !important;
}

.pb-2:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px; */
}


.pb-2{
  transition: box-shadow 0.3s ease, border-radius 0.3s ease;
    /* transition:.3s;
    padding: 8px !important; */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .pb-2:hover {
        box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 6px 0px;
        border-radius: 4px;
    }
}

/* For mobile screens */
@media (max-width: 480px) {
    .pb-2:hover {
        box-shadow: rgba(99, 99, 99, 0.1) 0px 1px 4px 0px;
        border-radius: 3px;
    }
}


.w40p:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}
.w20p:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}
.w25p:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}
.w15p:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.w15p .w25p .w20p .w40p {
    padding: 8px !important;
    transition: all 0.3s ease;
}

