/* General container styling */
li.nav-item.s-dtl{
    color: black;
}

.store-details {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
}
.store-details::-webkit-scrollbar{
    display: none;
}
/* Heading styles */
h3, h4 {
    color: #030303;
    margin-bottom: 20px;
}

/* Form styling */
/* form {
    margin-bottom: 30px;
    color: rgb(54, 54, 54);
    margin-left: 30px;
    input{
        margin-left: 10px;
        margin-top: 5px;
    }
} */

.form-label {
    font-weight: bold;
    color: #555;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
}

.form-control[readonly] {
    background-color: #f9f9f9;
    color: #555;
}

/* Margin adjustments */
.mt-4 {
    margin-top: 1.5rem !important;
    font-size: 20px;
}

.mb-3 {
    margin-bottom: 1rem !important;
    /* display: flex;
    align-items: center; */
}


.bank-dtl-table{
    margin-left: 10px;
    gap: 10px;
    th{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-right: 50px;
        color: rgb(54, 54, 54);

    }
}


/* <!-- LOGISTIC DETAIL --> */
.logistics-container {
    max-width: 600px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }

  .logistics-group {
    margin-bottom: 24px;
  }

  .logistics-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
  }

  .required::after {
    content: " *";
    color: #e53935;
  }

  .radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
  }

  .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .radio-input {
    margin-right: 8px;
  }

  .select-wrapper {
    position: relative;
  }

  .custom-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    appearance: none;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 12px;
  }

  .custom-select:hover {
    border-color: #2196F3;
  }

  .custom-select:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
  }

  .time-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }

  .time-input:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
  }

/* <!-- END LOGISTIC DETAIL  --> */


/* Supported Fulfillments */
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.logistics-form__container {
    max-width: 800px;
    margin: 0rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Checkbox Group */
.logistics-form__checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logistics-form__checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Input and Select Fields */
.logistics-form__group {
    margin-bottom: 1.5rem;
}

.logistics-form__label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.logistics-form__label--required::after {
    content: "*";
    color: red;
    margin-left: 0.25rem;
}

.logistics-form__input,
.logistics-form__day-select,
.logistics-form__time-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.logistics-form__day-select {
    width: auto;
    padding: 0.3rem 0.5rem;
}

.logistics-form__time-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logistics-form__time-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Buttons */
button {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

button:focus {
    outline: none;
}

.logistics-form__add-button {
    background-color: #007bff;
    color: #fff;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.logistics-form__add-button:hover {
    background-color: #0056b3;
}

.logistics-form__remove-btn {
    background-color: #dc3545;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    margin-left: 0.5rem;
    transition: background-color 0.3s;
}

.logistics-form__remove-btn:hover {
    background-color: #a71d2a;
}

/* Section Visibility */
#deliverySection,
#selfPickupSection {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logistics-form__container {
        padding: 1rem;
    }

    .logistics-form__time-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .logistics-form__time-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logistics-form__day-select {
        width: 100%;
    }
}
/* END Supported Fulfillments */
.seller-store-timing-container {
    max-width: 800px;
    /* margin: 20px; */
    padding: 20px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.seller-store-timing-form-group {
    margin-bottom: 20px;
}

.seller-store-timing-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.seller-store-timing-form-group label.required::after {
    content: " *";
    color: red;
}

.seller-store-timing-radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.seller-store-timing-radio-option {
    display: flex;
    align-items: center;
}

.seller-store-timing-radio-option input[type="radio"] {
    margin-right: 8px;
}

.seller-store-timing-date-picker {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}

.seller-store-timing-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.seller-store-timing-time-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 120px;
}

.seller-store-timing-select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 150px;
}

.seller-store-timing-add-button {
    background-color: transparent;
    color: #0078d4;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
}

.seller-store-timing-update-button {
    background-color: #0078d4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.seller-store-timing-remove-button {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
}
.selected-date {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
}

.remove-btn {
    background: red;
    color: white;
    border: none;
    padding: 3px 6px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 3px;
}

/*========== RESPONSIVE SELLER STORE DETAILS ==========*/
@media (max-width: 768px) {
  .store-details {
    padding: 10px;
  }
  .logistics-container {
    padding: 10px;
  }
  .seller-store-timing-row {
    flex-wrap: wrap;
  }
  .seller-store-timing-time-input,
  .seller-store-timing-select {
    width: 100%;
  }
  .logistics-form__time-row {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .logistics-form__container {
    padding: 10px;
  }
  .bank-dtl-table th {
    padding-right: 20px;
  }
}