/*!**************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/SwipeableItem.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************/
.swipeable-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    margin: 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    color: #000 !important
  }

  .order-toggle {
    height: 40px;
    width: 40px;
  }
  
  .swipeable-item:hover {
    transform: scale(1.02);
  }
  
  .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
  }
  
  .quantity-input {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #000;
  }
  
  .quantity-input:focus {
    outline: none;
    border-color: #0070f3;
  }

  .item-name {
    font-size: 20px;
    color: black;
  }

  .item-provider {
    font-size: 12px;
    color: orange
  }
/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/ItemList.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
.container {
    max-width: 600px; /* Limit the width for mobile view */
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    color: #333;
  }
  
  .item-info {
    margin-bottom: 20px;
  }
  
  button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #0070f3; /* Primary color */
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #005bb5; /* Darker shade on hover */
  }
  
  button:disabled {
    background-color: #ccc; /* Gray out disabled buttons */
    cursor: not-allowed;
  }
  
/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/Preview.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
.preview-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 600px;
    width: 100%;
    color: #000 !important;
    background-color: #fff !important;
    height: 80vh;
    overflow-y: scroll;
  }
  
  .preview-modal h2 {
    margin-bottom: 20px;
  }
  
  .provider-selection {
    margin-bottom: 20px;
  }
  
  .preview-table {
    width: 100%;
    border-collapse: collapse;

  }
  
  .preview-table th, .preview-table td {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  .preview-table th {
    background-color: #f2f2f2;
    text-align: left;
  }
  
  .preview-actions {
    margin-top: 20px;
  }
  
  .preview-actions button {
    margin-right: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #0070f3;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .preview-actions button:hover {
    background-color: #005bb5;
  }
  
  .preview-actions button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
