.login-wrapper {
    display: flex;
    justify-content: center; 
    align-items: center;     
    height: 100vh;           
    margin: 0;             
}
.login-container {
    max-width: 300px;
    width: 100%;  
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #FFFFFF;
}

.input-login-group {
    margin: 10px 0;
    text-align: left;
    margin-bottom: 10px;
}

.input-login-group label {
    display: flex;
    margin-bottom: 10px;
}

.input-login-group input {
    width: 100%;
    margin: auto;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    /* margin-bottom: 15px; */
}

.input-login-group input:hover {
    border: 1px solid #28A700;
}
button {
    margin-top: 40px;
    background-color: #2ADB06;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    display: flex;
    gap: 8px;
}


.btn-icon {
    font-size: 20px;
}

.error {
    color: red;
    font-size: 14px;
}
.companyLable {
    display: block;
    margin-top: '10px';
    font-size: 16px;
}

.companyInput {
    width: '100%';
    padding: '8px';
    margin: '5px 0';
    border-radius: '4px';
    border: '1px solid #ddd';
}

.companyImageUploadBox {
    width: '100%';
    height: '200px';
    border: '1px dashed #ddd';
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: '10px';
    position: relative;
    overflow: hidden;
    text-align: center;
    
}

.companyFavicon,
.companyImage {
    width: 20%;
    height: 20%;
    object-fit: cover;
}

.companyButton {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #2ADB06;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 30%;
    align-items: center;
}

.companySavedLogoContainer {
    position: relative;
    bottom: "10px";
    right: "0px";
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: "10px";
    border-radius: "5px";
    overflow: hidden;
}

.companyUploadPlaceholder {
    text-align: center;
    color: #555;
    border: 2px dotted #ddd;
    padding: 8px;
    width: 100%;
    text-align: center;
    background-color: #F5F5F5;
}
.validation-popup {
  padding: 16px;
  max-width: 400px;
}

.validation-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.validation-icon {
  color: #f44336;
  font-size: 24px;
  margin-right: 8px;
}

.validation-content {
  margin-bottom: 16px;
}

.validation-content ul {
  color: #f44336;
}

.validation-content ul li {
  text-align: left;
}

.validation-footer {
  display: flex;
  justify-content: flex-end;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's above other content */
}

/* .dialog-box {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
} */
.dialog-box {
    background-color: white;
    padding: 20px;
    width: 300px;
    text-align: left;
    border-radius: 10px;
    position: relative;
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); */
}

.close-btn {
    position: absolute;
    /* Absolute positioning inside .dialog-box */
    top: 10px;
    /* Adjust top to position it slightly below the top edge */
    right: 10px;
    /* Place it on the right */
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #333;
    /* Color of the close button */
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}

.cancel-button,
.confirm-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.cancel-button {
    background-color: black;
    color: white;
}

.cancel-button:hover {
    background-color: #333333;
}

.confirm-button {
    background-color: #2ADB06;
    color: white;
}

.confirm-button:hover {
    background-color: #28A700;
}

.google-cancel-button,
.google-confirm-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.google-cancel-button {
    background-color: black;
    color: white;
}

.google-cancel-button:hover {
    background-color: #333333;
}

.google-confirm-button {
    background-color: #2ADB06;
    color: white;
}

.google-confirm-button:hover {
    background-color: #28A700;
}

/* dialog */
.cancel-dialog-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .cancel-button,
    .confirm-button {
        padding: 10px 15px;
        font-size: 12px;
        width: 48%;
        white-space: normal;
    }

    /* dialog */
    .cancel-dialog-box {
        background-color: white;
        border-radius: 8px;
        padding: 20px;
        max-width: 600px;
        width: 90%;
        box-sizing: border-box;
        font-size: 12px;
    }

    .button-group {
        gap: 12px;
    }
}
/* App.css */
ons-toolbar:not([inline]), ons-bottom-toolbar{
  z-index: 1000 !important
}
/** Toolbar for phone*/
@media (orientation: portrait) {
    html[onsflag-iphonex-portrait] .toolbar {
      padding-top: 10px;
    }
}
@media (orientation: portrait) {
    html[onsflag-iphonex-portrait] .page__content {
      padding: 10px 0 0 0;
    }
}

/* Style for the sidebar */
.sidebar {
  background-color: #2c3e50;
  width: 80%;
  max-width: 250px;
  min-width: 200px;
}

/* Style for the toolbar in the sidebar */
/* .sidebar-toolbar {
  display: 'flex';
  justify-content: 'flex-end';
  padding: '10px'
} */
.close-icon {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

/* Profile section styles */
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.profile-image {
  width: 100px;
  height: 110px;
  border-radius: 50%;
  background-color: #BDC3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.profile-name {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.profile-link {
  color: #FFA500;
  text-decoration: none;
  font-size: 14px;
  text-decoration: underline;
}

/* Menu item styles */
.menu-item {
  padding: 15px;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  /* Keep the position context for the icon */
}

/* Link styling inside the menu-item */
.menu-item .link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  white-space: nowrap;
}

/* Icon styling */
.menu-item .icon {
  font-size: 18px;
  margin-left: 10px;
  flex-shrink: 0;
  position: absolute;
  right: 15px;
}

/* List styles */
.list {
  display: inline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-item {
    padding: 12px;
    font-size: 14px;
  }

  .menu-item .icon {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .menu-item {
    padding: 10px;
    font-size: 12px;
  }

  .menu-item .icon {
    font-size: 14px;
  }
}




/* Main content area styles */
/* .main-toolbar {
    width : 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }

  .left{
    align-items: center;
  } */


.main-content {
  padding: 30px;
  text-align: center;
}

.link {
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.main-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  background-color: #2ADB06;
}

.main-toolbar .left {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.main-toolbar .icon {
  font-size: 24px;
  /* Adjust icon size */
}

.icon {
  font-size: 30px;
  /* margin-right:20px; */
  /* padding-left: 13px; */
}

.icon-toolbar {
  font-size: 30px;
  /* margin-right: 20px; */
}
.input-error {
  border: 1px solid red !important;
  border-radius: 4px;
}

.error-text {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
@media (max-width: 768px) {
  .icon-toolbar {
    font-size: 24px;
    min-width: 24px;
    display: block !important;
  }

  .main-toolbar .left {
    margin-right: 5px;
  }
}

/* customize onsei alert OK button **/
.alert-dialog-button--custom-ok-btn {
  display: inline-block !important;
  color: #fff !important;
  background: #2ADB06 !important;
  border-radius: 5px !important;
  border: none !important;
  margin: 10px 10px 10px 0 !important;
}
/* List.css */
/* Card Style*/ 
.card {
    padding: 40px; /* Adds padding to all sides */
}
/* Container Style */
.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

/* Input field style */
.input-container,
.select-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 100px;
}

.input-container label,
.select-container label {
    white-space: nowrap;
}

/* Input field styling */
.input-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 40px; /* Ensure a consistent height for the input field */
    flex: 1;
    box-sizing: border-box; /* Ensure padding and border are included in height */
    outline: none;
    transition: border 0.3s ease; /* Smooth transition for focus */
}

.input-field:focus {
    border: 1px solid #4A90E2; /* Blue border on focus */
}

/* Dropdown styling */
.select-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 40px; /* Set the same height as the input field */
    flex: 1;
    box-sizing: border-box; /* Ensure padding and border are included in height */
}

.select-field:focus {
    border: 1px solid #4A90E2; /* Blue border on focus */
}

/* Button styling */
.search-submit-btn-container {
    display: flex;
    justify-content: flex-end; /* Align the submit button to the right */
    /* flex: 1; */
}

/* Submit button styling */
.search-submit-btn {
    width: 150px; /* Set a fixed width for the button */
    padding: 6px 24px;
    font-size: 16px;
    background-color: #2ADB06;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 40px; /* Same height as inputs */
    text-align: center;
}
@media (max-width: 450px) {
    .input-container,
    .select-container {
        flex-direction: column;  /* Stack label and input/select vertically */
        align-items: flex-start; /* Align items to the left */
        width: 100%;             /* Ensure they take full width */
        gap: 12px;               /* Space between label and input/select */
    }
}

/*register button and text */
.registerbtn-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 16px; */
    padding-left: 10px;   
    padding-right: 10px; 
}
.registerbtn-text p {
    margin-top: 40px; 
}


/* for table in list*/
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 8px;
}
.table th.center,
.table td.center {
    text-align: center;  /* Center align both th and td with the "center" class */
}
.table th {
    background-color: #444;
    color: white;
}

.table td {
    border-bottom: 1px solid #ECECEC;
}

.table td.center {
    text-align: center;
}

.table-button {
    margin: 2px 5px;
    padding: 2px 16px;
}

.table-button-gray {
    background-color: gray;
    color: #fff;
    border-radius: 5px; 
}

.table-button-red {
    background-color: red;
    color: #fff;
    border-radius: 5px; 
}

.systemadmin-insert-container {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 50px;
    text-align: left;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
}
/* Input Group */
.systemadmin-insert-input-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%; 
}

.input-with-error {
  flex: 1;
  min-width: 0; /* Prevent overflow in flexbox */
}

/* Label */
.systemadmin-insert-input-label {
     width: 28%;
  width: 150px; /* fixed width label for all rows */
  flex-shrink: 0;
}
/* Input Field */
.systemadmin-insert-form-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Error State */
.systemadmin-insert-form-input-error {
    border: 1px solid red !important;
}
.permission-select {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 45px;
    box-sizing: border-box;
    flex: 1;
    width: 100%; /* Changed from 600% to 100% for proper sizing */
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}
.permission-select.error {
    border: 1px solid red;
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.1);
}
.permission-select:hover{
    border: 1px solid #28A700 !important;
}

/* Error message */
/* .select-error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-left: 0;
} */
    .system-error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px; 
    }
  .error-icon {
    color: red;
    margin-right: 10px;
    font-size: 24px;
  }
  .success-icon {
    color: green;
    margin-right: 10px;
    font-size: 24px;
  }

  @media (max-width: 600px) {
  .systemadmin-insert-input-group {
    flex-direction: column;
  }

  .systemadmin-insert-input-label {
    width: 100%;
    margin-bottom: 5px;
  }

  .input-with-error {
    width: 100%;
  }
}
/* List.css */
.card {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background-color: white;
}

/* Fix the table header */
.table thead {
    position: sticky;
    top: 0;
    background-color: #f9f9f9;
    z-index: 1;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Container Style */
.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

/* Input field style */
.input-container,
.select-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 100px;
}

.input-container label,
.select-container label {
    white-space: nowrap;
}

/* Input field styling */
.input-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 40px;
    flex: 1;
    box-sizing: border-box;
    outline: none;
    transition: border 0.3s ease;
}

.input-field:focus {
    border: 1px solid #28A700;
}

/* Dropdown styling */
.select-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 40px;
    flex: 1;
    box-sizing: border-box;
}

.select-field:focus {
    border: 1px solid #4A90E2;
}

/* Button styling */
.submit-button-container {
    flex: 0 0 auto;
}

/* Button styling */
.submit-button {
    width: 100%;
    padding: 6px 24px;
    font-size: 16px;
    background-color: #2ADB06;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
}

.submit-button:hover {
    background-color: #28A700;
}
@media (max-width: 450px) {
    .input-container,
    .select-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 12px;
    }
}

/*register button and text */
.registerbtn-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-left: 10px;
    padding-right: 10px;
}
.registerbtn-text p {
    margin-top: 40px;
}


/* for table in list*/
.table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 8px;
}
.table th.center,
.table td.center {
    text-align: center;
}
.table th {
    background-color: #444;
    color: white;
}

/* .table td {
    border-bottom: 1px solid #ECECEC;
} */

.table td.center {
    text-align: center;
}

.table-button {
    margin: 2px 5px;
    padding: 2px 16px;
}

.table-button-gray {
    background-color: gray;
    color: #fff;
    border-radius: 5px;
}
.table-button-gray:hover {
    background-color: #666666;
}
.table-button-light-gray {
    background-color: rgb(214, 209, 209);
    color: #fff;
    border-radius: 5px;
}
.table-button-light-gray:hover {
    background-color: #666666;
}
.table-button-red {
    background-color: red;
    color: #fff;
    border-radius: 5px;
}
.table-button-red:hover {
    background-color: #FF3B30;
}
@media (max-width: 768px) {
    .table th,
    .table td {
        padding: 8px;
    }
    .table {
        font-size: 12px;
    }
}

/** pagination **/
.pagination-container {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    /* flex-wrap: wrap; */

}

.pagination-nav-text {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
}

.pagination-nav-text.disabled {
    color: #ccc;
    cursor: default;
}

.pagination-nav-text:hover:not(.disabled) {
    text-decoration: underline;
}

.pagination-pages {
    display: flex;
    gap: 8px;
    margin: 0 8px;
    align-items: center;
}

.pagination-page-btn.active {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background-color: #333333;
    color: white;
    border-radius: 4px;
    font-weight: bold;
}
.pagination-page-btn.active:hover{
    background-color: #28A700;
}
.pagination-page-text {
    min-width: 24px;
    padding: 4px 8px;
    color: #333;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.pagination-page-text:hover {
    text-decoration: underline;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #666;
}


input[type="radio"] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid black;
    background-color: #fff;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="radio"]:checked {
    background-color: gray;
    border-color: gray;
}
/* Mobile styles */
@media (max-width: 768px) {
    .pagination-nav-text span:not(.pagination-icon) {
        display: none;
    }
    .pagination-container {
        gap: 8px;
        justify-content: center;
    }

    .pagination-nav-text {
        font-size: 13px;
        padding: 2px 4px;
    }

    .pagination-page-btn.active {
        min-width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .pagination-page-text {
        font-size: 13px;
        padding: 2px 6px;
    }

    .pagination-pages {
        gap: 4px;
    }
}

.star {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: gray;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    cursor: pointer;
    border: 2px solid gray;
    box-sizing: border-box;
  }

  .star[data-rating="1"] {
    background-color: gold;
    border-color: gold;
  }

  .star[data-rating="0"] {
    background-color: gold;
    border-color: gold;
  }

  .client-regist-button {
    width: 130px;
    padding: 6px 24px;
    font-size: 16px;
    background-color: #333333;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
  }

  /* Heart shape */
.heart {
    width: 48px;
    height: 100%;
    min-height: 25px;
    display: inline-block;
    background-color: #FFFFFF;
    clip-path: path("M24 4 C20 0, 12 0, 12 8 C12 16, 24 24, 24 24 C24 24, 36 16, 36 8 C36 0, 28 0, 24 4 Z");
    cursor: pointer;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Heart when marked as favorite */
.heart[data-favorite="true"] {
    background-color: #e63946;
    transform: scale(1.1);
  }

/* Heart when not marked as favorite */
.heart[data-favorite="false"] {
    background-color: #CCCCCC;
    transform: scale(1.1);
}

/* Hover effect */
.heart:hover {
    background-color: pink;
    border-color: pink;
}

/* Container for all form elements */

.form-group-container {
    display: flex;
    gap: 15px;
  }
  
  .input-radio-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Makes container take full available width */
    max-width: 1200px; /* Adjust this value as needed for your design */
}
  
.search-container,
.second-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust gap as needed */
    align-items: center;
    width: 100%; /* Ensure full width usage */
}

/* Container for individual input/select pairs */
.search-input-container,
.search-select-container {
    display: flex;
    flex-direction: row; /* Align label and input/select side by side */
    align-items: center; /* Vertically center the label and input */
    flex: 1;
    min-width: 220px; /* Ensure a minimum width */
}

/* Consistent width for labels to make sure they align */
.search-input-container label,
.search-select-container label {
    font-size: 14px;
    margin-right: 10px; /* Space between label and input */
    white-space: nowrap;
    width: 120px; /* Set a fixed width for labels */
    text-align: right; /* Align text to the right for consistency */
}

/* Styling for input and select fields */
.search-input-field,
.search-select-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    width: 100%; /* Ensure the input takes up the remaining space */
    box-sizing: border-box;
    outline: none;
    transition: border 0.3s ease;
}

.search-input-field:hover,
.search-select-field:hover {
  border: 1px solid #28A700 !important;
}
.input-field:hover,
.select-field:hover {
  border: 1px solid #28A700 !important;
}

/* Focus styling for inputs and selects */
.search-input-field:focus,
.search-select-field:focus {
    border: 1px solid #28A700 !important;
}


/* Button container for the submit button */
.search-submit-button-container {
    display: flex;
    justify-content: flex-end; 
    flex: 1;
}

.search-evaluate-button-container {
    display: flex;
    flex: 1;
    justify-content: flex-end
}

/* Submit button styling */
.search-submit-button {
    width: 150px;
    /* Set a fixed width for the button */
    padding: 6px 24px;
    font-size: 16px;
    background-color: #2ADB06;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
    /* Same height as inputs */
    text-align: center;
}

.search-submit-button:hover {
    background-color: #28A700;
}

.radio-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 120px;
}

.radio-item {
    display: flex;
    /* align-items: center; */
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  gap: 10px; /* space between checkboxes */
  align-items: center;
  margin-right: 100px;
}

.radio-input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: #007bff; /* Optional: Sets the color of the radio button */
}

.radio-label {
    font-size: 16px;
}
/* Mobile layout */
@media (max-width: 767px) {
    .form-group-container {
        display:block;
        gap: 15px;
      }
    .search-input-container {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .search-input-container label {
      text-align: left;
      margin-bottom: 5px;
      margin-right: 0;
      width: 100%;
    }
    
    .radio-group {
      margin-left: 0;
      flex-wrap: wrap;
      font-size: 12px;
    }
    
    .search-evaluate-button-container {
      justify-content: flex-start;
      margin-top: 10px;
    }
    
    .search-submit-button {
      width: 100%;
    }
    
  }

/* Order.css */
.order-search-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust gap as needed */
    align-items: center;
    width: 100%; /* Ensure full width usage */
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}


/* Container for the entire form */
.register-card {
    margin: 20px;
    /* margin-top: 20px; */
    /* margin-left: 100px;
    margin-right: 100px; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Container for each pair of label and input */
.register-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns for two pairs */
    gap: 25px;
    margin-left: 30px;
    margin-right: 30px;
    /* Space between the two pairs */
    /* margin-bottom: 20px; */
    /* Space between rows */
}

/* Container for each label and input field */
.register-input-container {
    display: grid;
    grid-template-columns: 150px 1fr;
    /* Fixed width for label-group, remaining space for input */
    align-items: start;
    /* Space between label-group and input */
    /* gap: 10px;  */
}

/* Group for label and sub-label */
.label-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Stack label and sub-label vertically */
}

/* Label styling */
.label-group label {
    color: #666;
}

/* Sub-label styling */
.register-sub-label {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
    /* Space between label and sub-label */
}

select option {
    color: #666;

}

/* Input field styling */
.register-input-field {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    /* Full width of the container */
}

.register-textbox-field {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    /* Full width of the container */
    height: 150px;
    /* Set the desired height for the Textarea */
    resize: vertical;
    /* Allow vertical resizing */
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 70px;
}
.site-cancel-button,
.register-button {
  width: 150px; 
  font-size: 16px;
  display: flex; /* Use flexbox to center content */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  padding: 10px 0; /* Add padding for vertical space */
  border: none; /* Optional: remove border */
  border-radius: 4px; /* Optional: round the corners */
}

.register-button {
  background-color: #4caf50;
  color: white; /* Ensure text color is white */
}
.register-button:hover {
    background-color: #28A700;
}
.site-cancel-button {
  background-color: black;
  color: white;
}
.site-cancel-button:hover {
    background-color: #333333;
}
/* Responsive adjustments */
@media (max-width: 768px) {

    /* Keep two columns for inputs */
    .register-form-container {
        /* grid-template-columns: 1fr 1fr; */
        /* Two columns on tablets and small screens */
        grid-template-columns: 1fr; /* One column on small screens */
    }

    /* Ensure label and input fields stay on the same line */
    .register-input-container {
        grid-template-columns: 1fr 2fr;
        /* Label takes 1/3 of the space, input takes 2/3 */
    }

    .register-input-field {
        width: 100%;
        /* Full width on small screens */
    }
    
}

/* Evaluation */
.evaluation-register-form-group {
    margin-bottom: 50px;
    margin-right: 8px;
}

.evaluation-circles {
    display: flex; /* Align circles in a row */
    gap: 10px; /* Space between circles */
}

.evaluation-circle {
    width: 40px; /* Width of the circle */
    height: 40px; /* Height of the circle */
   
    border-radius: 50%; /* Makes the shape circular */
    display: flex;
    justify-content: center;
    align-items: center;
    color: black; /* Text color inside circle */
    font-size: 16px; /* Font size of the number */
    font-weight: bold;
}
.evaluation-circle.filled {
    background-color: #FFD800; /* Filled circle color (blue) */
  }
  
  .evaluation-circle.unfilled {
    background-color: #CCCCCC; /* Blue background */
  }

  .evaluation-back-button-container {
    display: flex;
    justify-content: flex-end; /* Align the button to the right */
    width: 100%;
  }
  
  .evaluation-back-button {
    width: 30%;  /* Set width of the button */
    height: 40px; /* Set height of the button */
    padding: 10px;
    background-color: white;
    color: black;
    border: 2px solid #2ADB06;  /* Set border color to red */
    border-radius: 4px;
    cursor: pointer;
}
  
/* List.css */
/* Card Style*/ 
.card {
    padding: 40px; /* Adds padding to all sides */
}
/* Container Style */
.list-form-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 50px);
    gap: 5px;
    align-items: center;
}
@media (max-width: 768px) {
    .list-form-container {
        grid-template-columns: 1fr; 
        grid-template-rows: auto;
    }

    .input-container,
    .select-container {
        flex-direction: column;       
        align-items: stretch;         
        width: 100%;
        gap: 4px;
        margin: 0 0 12px 0;          
    }

    .input-container label,
    .select-container label {
        width: 100%;                  
        font-size: 14px;
    }

    .input-field,
    .select-field {
        width: 100%;                 
        box-sizing: border-box;
    }

    .first,
    .second,
    .third,
    .fourth,
    .fifth,
    .sixth,
    .seventh,
    .eighth {
        grid-column: 1 / -1;         
    }
}

/* Input field style */
.input-container,
.select-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin: 0 20px;
}

.input-container label,
.select-container label {
    white-space: nowrap;
}

/* Input field styling */
.input-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 40px; /* Ensure a consistent height for the input field */
    flex: 1;
    box-sizing: border-box; /* Ensure padding and border are included in height */
    outline: none;
    transition: border 0.3s ease; /* Smooth transition for focus */
}

.first {
    grid-column: 1 / 2;
    grid-row: 1;
}

.second {
    grid-column: 2 / 2;
    grid-row: 1;
}

.third {
    grid-column: 1 / 2;
    grid-row: 2;
}

.fourth {
    grid-column: 2 / 2;
    grid-row: 2;
}

.fifth {
    grid-column: 1 / 2;
    grid-row: 3;
}
.sixth {
    grid-column: 2 / 2;
    grid-row: 3;
}
.seventh {
    grid-column: 1 / 2;
    grid-row: 4;
}
.eighth {
    grid-column: 2 / 2;
    grid-row: 4;
    text-align: end;
}

.input-field:focus {
    border: 1px solid #4A90E2; /* Blue border on focus */
}

/* Dropdown styling */
.select-field {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    height: 40px; /* Set the same height as the input field */
    flex: 1;
    box-sizing: border-box; /* Ensure padding and border are included in height */
}

.select-field:focus {
    border: 1px solid #4A90E2; /* Blue border on focus */
}

/* Button styling */
.submit-button-container {
    flex: 0 0 auto;
}

/* Button styling */
.submit-button {
    width: 50%; /* Ensure the button takes up the full width of its container */
    padding: 6px 24px; /* Increase padding to make the button larger */
    font-size: 16px; /* Increase font size for better visibility */
    background-color: #2ADB06;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 40px; /* Increase height to make the button taller */
    text-align: center;
}

.submit-button:hover {
    background-color: #28A700;
}
@media (max-width: 450px) {
    .input-container,
    .select-container {
        flex-direction: column;  /* Stack label and input/select vertically */
        align-items: flex-start; /* Align items to the left */
        width: 100%;             /* Ensure they take full width */
        gap: 12px;               /* Space between label and input/select */
    }
}

/*register button and text */
.registerbtn-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 16px; */
    padding-left: 10px;   
    padding-right: 10px; 
}
.registerbtn-text p {
    margin-top: 40px; 
}

/* for table in list*/
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 8px;
}
.table th.center,
.table td.center {
    text-align: center;  /* Center align both th and td with the "center" class */
}
.table th {
    background-color: #444;
    color: white;
}

.table td {
    border-bottom: 1px solid #ECECEC;
}

.table td.center {
    text-align: center;
}

.table-button {
    margin: 2px 5px;
    padding: 2px 16px;
}

.table-button-gray {
    background-color: gray;
    color: #fff;
    border-radius: 5px; 
}

.table-button-red {
    background-color: red;
    color: #fff;
    border-radius: 5px; 
}

.staff-container {
  margin: 20px auto;
  text-align: center;
}

.outer-filters-div {
  display: flex;
  align-items: center;
  /* Vertically align the items in the center */
  justify-content: space-between;
  /* Optional: space between the two divs */
  margin-bottom: 20px;
}

.outer-calendar-div {
  display: flex;
}

.filters {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.staff-btn {
  padding: 5px 15px;
  align-items: center;
  border: none;
  cursor: pointer;
  background-color: #666666;
}

.staff-btn:hover {
  background-color: black;
}

.staff-btn.green {
  background-color: #2ADB06;
  color: white;

}

.staff-btn.green:hover {
  background-color: #28A700;
}

.staff-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 0;
}

.staff-weekday {
  font-weight: bold;
  background-color: rgb(192, 187, 187);
  padding: 10px;
}

.staff-day {
  padding: 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  border: 1px solid #ddd;
  height: 100px;
}

.staff-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0;
  /* Remove any gap between cells */
}

.legend {
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.color-box {
  width: 20px;
  height: 20px;
}

.red {
  background-color: #FF3B30;
}

.orange {
  background-color: #FFAF49;
}

.blue {
  background-color: #CFE1F1;
}

/* Empty day cells before the first day of the month */
.staff-day.empty {
  border: 1px solid #ddd;
  cursor: default;
}
/* Basic card styling */
.request-card {
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Styling for the row containing the columns */
.request-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Styling for each column */

.table-button-green {
  background-color: #2ADB06;
  color: #fff;
  border-radius: 5px;
}
.table-button-green:hover {
  background-color: #28A700;
}

/* Label styling */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}
.request-search-button {
  width: 130px;
  padding: 6px 24px;
  font-size: 16px;
  background-color: #2ADB06;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /* height: 40px; */
  text-align: center;
}
.request-search-button:hover{
  background-color: #28A700;
}
.request-register-btn{
  background-color: #000;
}
.request-register-btn:hover{
  background-color: #444;
}
.duplicate-register-btn{
  background-color: gray;
  margin-right: 20px;
}
.duplicate-register-btn:hover{
  background-color: #444;
}
/* Input field styling */
/* input[type="text"] {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
} */

/* Textarea specific styling */
textarea {
  width: 100%;
  height: 150px;
  resize: vertical;
  /* padding: 10px; */
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
input:hover,
select:hover,
textarea:hover {
    border-color: #28A700;     /* Optional: highlight border */
}
/* Make textarea span across both columns */
.request-row .request-column:last-child textarea {
  width: 100%;
  /* Full width of both columns */
  margin-top: 15px;
}

.request-column {
  display: flex;
  flex-direction: column;
  flex: 1 1 48%;
  min-width: 250px;
}

.request-column input,
.request-column textarea {
  width: 100%;
  background-color: white;
  height: 35px;
}

label {
  display: block;
  margin-bottom: 5px;
  /* Adds some space between label and input */
  text-align: left;
}

textarea {
  resize: vertical;
  /* Optional: Allows resizing of the textarea vertically */
}

.request-cancel-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  /* width: 20%; */
  height: 45px;
  padding: 0 16px;
  min-width: 100px;         /* Ensure enough space for text */
  width: auto;              /* Do not restrict width */
  white-space: nowrap;      /* Prevent text wrapping */
  overflow: visible;        /* Avoid text being clipped */
  text-overflow: unset;     /* Allow full text to display */
  flex-shrink: 0;           /* Prevent shrinking inside flex */

  display: flex;               /* Use flex to center content */
  justify-content: center;     /* Horizontal center */
  align-items: center;         /* Vertical center */
}
.request-register-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: #2ADB06;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  /* width: 20%; */
  height: 45px;
  padding: 0 16px;
  min-width: 100px;         /* Ensure enough space for text */
  width: auto;              /* Do not restrict width */
  white-space: nowrap;      /* Prevent text wrapping */
  overflow: visible;        /* Avoid text being clipped */
  text-overflow: unset;     /* Allow full text to display */
  flex-shrink: 0;           /* Prevent shrinking inside flex */

  display: flex;               /* Use flex to center content */
  justify-content: center;     /* Horizontal center */
  align-items: center;         /* Vertical center */
}
.status-day {
  font-weight: bold;
  font-size: 16px;
  color: black;
  padding:0;
  margin: 0;
  line-height: 1;
}

.adjust {
  text-align: center;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.status-header {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* .arrow-icon {
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    color: #000;
    width: 20px;
} */
.arrow-btn {
  /* margin-top: 40px; */
  background: none;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 10%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  display: flex;
  gap: 8px;
}

.arrow-btn:hover {
  background-color: #cfcfcf;
}

.react-datepicker {
  border: none !important;
  /* For removing border */
}

.request-calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #4285F4;
}

/* file design */
.request-file-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 10px; */
  /* border-bottom: 1px solid #eee; */
  border: 1px solid #eee;
  background-color: #c7c7c7;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.request-register-button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;  /* Allow wrap on small screens */
}

.request-file-upload {
  border: 2px dashed #aaa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
}

.calendar-popup {
  position: absolute;
  /* top: 215px; */
  left: 60%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calendar-footer-container {
  display: flex;
  justify-content: center;
  gap: 150px;
  margin-bottom: 10px;
}

.footer-status {
  color: #4285F4;
  cursor: pointer;
  text-decoration: underline;
}


.header-underline {
  width: 100%;
  height: 5px;
  background-color:  #2ADB06;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .request-register-button {
    width: 30%;
  }
  .request-cancel-button{
    width: 30%;
  }
}
/* Container Styles */
.pdf-file-previews {
  width: 100%;
  margin-top: 15px;
}

/* Multi-File Card */
.pdf-multi-file-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 15px;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

/* Icon Wrapper */
.pdf-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* PDF Icon */
.pdf-icon {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-icon svg {
  width: 24px;
  height: 24px;
}

/* Icon Badge */
.pdf-icon-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff0000;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Close Button */
.pdf-icon-close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  background: white;
  border: 1px solid #ccc;
  color: #666;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.pdf-icon-close-btn:hover {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

/* File Name */
.pdf-icon-name {
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .pdf-multi-file-card {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
  }

  .pdf-icon {
    width: 36px;
    height: 36px;
  }

  .pdf-icon-name {
    font-size: 11px;
  }
}

/* .custom-selected-day {
    background-color: yellow !important; 
    color: #fff !important;
    border-radius: 0.3rem;
} */
.custom-today {
  background-color: #4169E1 !important;
  color: #fff !important;
  border-radius: 0.3rem;
}
.react-datepicker__day--selected {
  background-color: yellow !important;
  color: inherit !important;
}
.react-datepicker__day--keyboard-selected {
  background-color: white !important;
  color: black !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-gap {
  gap: 0 !important;
}

.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 4px;
  text-align: left;
  /* margin-bottom: 10px; */
}
.required-star {
  color: red;
  margin-left: 4px;
}
@media screen and (max-width: 420px) {
  .request-cancel-button {
    font-size: 15px;
    padding: 0 12px;
    min-width: 90px;
  }
}
/* Container with controllable width */
.filterable-select-wrapper {
    position: relative;
    /* width: 90%; */
    max-width: 410px;
    /* or customize here */
}

/* Input wrapper (set width here if needed) */
.filterable-select-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 8px;
    height: 32px;
    background-color: white;
    cursor: text;
    /* width: 100%; */
}

/* Blue border on focus */
.filterable-select-input-wrapper:focus-within {
    border-color: #1d72b8;
    box-shadow: 0 0 0 2px rgba(29, 114, 184, 0.2);
}

/* Input field */
.filterable-select-input {
    border: none;
    flex: 1;
    font-size: 14px;
    outline: none;
    background: transparent;
    /* width: 100%; */
}

/* Dropdown icon */
.dropdown-icon {
    margin-left: 8px;
    font-size: 14px;
    color: #555;
    pointer-events: none;
}

/* Dropdown list */
.filterable-select-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    /* width: 100%; */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft floating effect */
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Each option */
.filterable-select-option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.filterable-select-option:hover {
    background-color: #e6f0ff;
}

.error-select {
    border: 1px solid red;
  }

.error-text {
    color: red;
    font-size: 12px;
    margin-top: 4px;
  }
  
.myPage-container {
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.top-div, .bottom-div {
    flex: 0.5;
    background-color: white;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

h2 {
    color: black;
    margin-bottom: 5px;
}

h3 {
    text-align: left;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    text-align: left;
}

.input-group {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); */
    display:flex;
    padding:5px;
    align-items: center;
    margin-bottom: 10px;
    margin: 0px 5px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top:15px;
}
.input-mypage-group{
    display: flex;
    padding: 5px;
    align-items: center;
    margin-bottom: 10px;
    margin: 0px 5px;
}
label {
    color:black;
    display: block;
    margin-top: 1px;
}

input, select {
    height: 40px;
    width: 100%;
    padding: 2px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

input[read-only] {
    cursor: not-allowed;
}

button.submit-btn {
    background-color: #2ADB06;
    color: white;
    height: 40px;
    width: 50%;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    margin-right: 0px;
    margin-top: 10px;
}

button.submit-btn:hover {
    background-color: #28A700;
}

.link-buttons {
    margin-top: 5px;
}

.link-btn {
    display: flex;
    padding: 10px 10px; 
    font-size: 12px;
    width: 80px;
    border-radius: 15px;
    margin-top: 0px;
    float: right;
    margin-right: 0px;
}

.link-btn Button {
    background-color: #2ADB06;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 20%;
    
}

.link-btn Button:hover {
    background-color: #28A700;
}

.platform-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
}

.box {
    width: 45%;
    padding: 10px;
    background-color: #F5F5F5;
    border-radius: 10px;
    font-size: 14px;

}

.logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    float: left;
}

.slack-btn Button {
    background-color: #2ADB06;
}

.line-btn Button {
    background-color: #2ADB06;
}

/* （依頼者）マイページ */
.mypage-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 24px;
  box-sizing: border-box;
  background: #fff;
}

.mypage-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Each row inside the grid */

.mypage-row-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

/* Label beside input */
.mypage-label {
  min-width: 130px;
  font-size: 14px;
  white-space: nowrap;
}

/* Input box */
.mypage-input {
  flex: 1;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 300px; /* consistent size */
  box-sizing: border-box;
}

.mypage-input.error {
  border: 1px solid red;
}

/* Submit button container */
.mypage-submit-container {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 20px;
}

/* Submit button */
.mypage-submit-button {
  padding: 10px 24px;
  background-color: #28A700;
  color: white;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 150px;
}

/* Responsive adjustment */
@media screen and (max-width: 775px) {
  .mypage-info-grid {
    grid-template-columns: 1fr;
  }

  .mypage-row-group {
    flex-direction: row;
    align-items: left;
    width: 100%;
    box-sizing: border-box;
  }

    .mypage-label {
        width:  110px;
        font-size: 14px;
        white-space: nowrap;
    }

  .mypage-input {
    flex: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
    form div {
      flex-direction: column; /* Stack label and input fields vertically */
      gap: 15px;
    }
  
    form div label {
      width: 100%; /* Labels take full width */
      font-size: 14px; /* Adjust font size for mobile */
    }
  
  
  
    .dialog-box {
      width: 90%; /* Make the dialog box smaller on mobile */
    }
  
    .dialog-overlay {
      padding: 10px;
    }
  
    /* Ensure the button group has a correct layout for mobile screens */
    form .button-group {
      display: flex;
      flex-direction: column; /* Stack buttons vertically for mobile */
      gap: 10px;
      width: 100%; /* Ensure it takes full width */
    }
  
    form .button-group button {
      width: 100%; /* Buttons take full width */
      padding: 14px; /* Increase padding for better touch target */
      font-size: 16px; /* Increase font size for better readability */
      box-sizing: border-box; /* Ensure padding is included in width calculation */
      display: block; /* Ensure the buttons are treated as block elements */
      margin: 0 auto; /* Center align the button */
    }
  }
  
  @media (min-width: 769px) {
    /* On larger screens (tablet and desktop) */
    form .button-group {
      display: flex;
      flex-direction: row; /* Buttons side by side */
      gap: 20px;
    }
  
    form .button-group button {
      width: 50%; /* Buttons have their default width */
      padding: 12px 24px; /* Adjust padding for better alignment */
      font-size: 16px; /* Ensure buttons are readable */
    }
  }
  
  @media (max-width: 480px) {
    form div label {
      font-size: 12px; /* Further reduce font size for very small screens */
    }
  
    form div input, 
    form div select {
      font-size: 14px; /* Make the input text slightly smaller */
    }
  
    /* Adjust button styles for very small screens (like iPhone SE) */
    form .button-group button {
      font-size: 14px; /* Slightly smaller text for very small screens */
      padding: 12px; /* Reduce padding for small devices */
    }
  }
  
/* Basic Styles */
.register-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.register-form-container {
    max-width: 100%;
    margin: auto;
}

/* Form Field Containers */
.sitesupervisor-input-container {
    display: flex;
    flex-direction: row; /* Set flex direction to row to make label and input side by side */
    margin-bottom: 15px;
    align-items: center; /* Vertically align items in the center */
}

.sitesupervisor-label-group {
    display: flex;
    flex-direction: column;
    width: 30%; /* Labels take up 30% of the width */
    font-weight: bold;
}

.register-sub-label {
    font-size: 0.9em;
    color: #888;
}

.register-input-field, .textbox-field, select {
    padding: 10px;
    font-size: 16px;
    width: 70%; /* Inputs take up 70% of the width */
    box-sizing: border-box;
}

/* Button Styles */
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    width: 20%;
}

/* Button Container */
.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Stack inputs vertically on mobile */
    .sitesupervisor-input-container {
        flex-direction: column; /* Stack label and input vertically */
    }

    .sitesupervisor-label-group {
        width: 100%; /* Labels take full width */
    }

    .register-input-field, .textbox-field, select {
        width: 100%; /* Inputs take full width */
    }

    .button-container {
        flex-direction: column;
        gap: 15px;
    }

    button {
        width: 100%; /* Full width buttons */
    }
}

/* Very Small Screens (e.g., iPhone SE) */
@media (max-width: 480px) {
    .register-input-field, .textbox-field, select {
        font-size: 14px; /* Smaller font size */
    }

    .button-container {
        flex-direction: column;
    }

    button {
        padding: 12px 20px;
    }
}

/* Base styles */
.inquiry-button {
  width: 150px;
  padding: 8px 16px;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.inquiry-button-cancel {
  background-color: black;
  cursor: pointer;
}

.inquiry-button-cancel:hover {
  background-color: black;
}

/* Layout containers */
.inquiry-button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.inquiry-form-container {
  max-width: 400px;
  margin: auto;
  padding: 50px;
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* Form elements */
.inquiry-form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.inquiry-form-group label {
  width: 30%;
}

.inquiry-form-group input,
.inquiry-form-group select,
.inquiry-form-group textarea {
  width: 70%;
  padding: 4px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.inquiry-form-group textarea {
  height: 150px;
}

.inquiry-form-header {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Register form styles */
.inquiry-register-form-container {
  max-width: 400px;
  margin: auto;
  padding: 40px;
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.inquiry-register-form-header {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.inquiry-register-form-group {
  margin-bottom: 10px;
  margin-right: 8px;
}

.inquiry-register-form-group label {
  display: block;
  margin-bottom: 5px;
}

.inquiry-register-form-group input,
.inquiry-register-form-group textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.inquiry-register-form-group input {
  height: 30px;
}

.inquiry-register-form-group textarea {
  height: 150px;
  resize: none;
}

/* Register buttons */
.inquiry-register-button {
  width: 100%;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.inquiry-register-button-cancel {
  background-color: black;
}

.inquiry-register-button-cancel:hover {
  background-color: black;
}

.inquiry-register-button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.inquiry-register-phone-button {
  width: 100%;
  padding: 10px;
  background-color: #2adb06;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-register-phone-button svg {
  margin-right: 8px;
}

.inquiry-register-or-text {
  text-align: center;
  margin: 10px 0;
}

.white-button {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  width: 100%;
  height: 45px;
}

/* Media queries */
@media screen and (max-width: 480px) {
  .inquiry-register-button {
    margin-top: 0px !important;
  }
  
  .inquiry-register-phone-button {
    margin-top: 0px;
  }
  
  .inquiry-form-container form div {
    flex-direction: unset;
  }
}

@media (max-width: 768px) {
  form div {
    flex-direction: unset;
  }
}
/*** 検索条件 **/
.list-search-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* Space between grid items */
}

@media (max-width: 1024px) {
  .list-search-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
  }
}

@media (max-width: 768px) {
  .list-search-container {
    grid-template-columns: 1fr; /* 1 column for small screens */
  }
}

.search-input-container label {
  text-align: left !important;
}

.contract-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Individual checkbox item */
.checkbox-item {
  display: flex;
  align-items: center;
  width: 25%;
  gap: 5px; /* Space between checkbox and label */
}

@media (max-width: 1024px) {
  .checkbox-item {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .checkbox-item {
    width: 40%;
  }
}

/* Style for the checkbox */
.checkbox-item input[type='checkbox'] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Style for the label */
.checkbox-item label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.client-search-button {
  width: 130px;
  padding: 6px 24px;
  font-size: 16px;
  background-color: #2adb06;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.client-search-select {
  width: 75%;
}
.action-button-container {
  display: flex;
  gap: 10px; /* Add some space between the buttons */
  align-items: center;
  justify-content: center;
}

.action-button-container .remove-btn,
.action-button-container .row-add-btn {
  flex: 1;
  max-width: 150px;
  min-width: 100px;
  padding: 5px;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.tabs-container {
  width: 80%;
  margin: 50px auto;
  background-color: #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tabs-header {
  display: flex;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0 10px 0 10px;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  margin-top: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid transparent;
  border-bottom: none;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.tab:hover {
  background-color: #f5f5f5;
}

.tab.active {
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 5px 0;
}

.tabs-content {
  background-color: #ffffff;
  font-size: 16px;
  color: #333;
}

.tab-button {
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.tab-button:hover {
  background-color: #2980b9;
}

.client-register-card {
  border-radius: 5px !important;
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
}

/**Client Information**/
.customer-register-form-group {
  margin-bottom: 10px;
}
.customer-register-form-group input,
select {
  width: 100%;
  background: #ffffff;
  height: 40px;
  font-size: 14px;
}

.customer-register-form-group textarea,
.contract-register-form-group textarea {
  width: 100%;
  background: #ffffff;
  height: auto;
}

.customer-register-form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

/** popup **/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
}

.popup-header svg {
  margin-right: 10px;
}

.popup-header p {
  margin: 0;
  color: #555;
}

.popup-buttons {
  display: flex;
  justify-content: space-evenly;
}

.popup-buttons button {
  background-color: #2adb06;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.popup-buttons button:hover {
  background-color: #28a700;
}

.popup-buttons button + button {
  margin-left: 10px;
}

/** table **/
.table-container {
  overflow-x: auto;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 20px;
  width: 100%;
  background-color: white;
  /* outline: 2px solid #000; */
}
.table-input {
  width: 90%;
  padding: 8px;
  margin: 2px 0;
}
.table-header {
  padding: 10px;
  border: 1px solid #ddd;
  min-width: 150px;
}
.table-cell {
  min-width: 150px;
  border: 1px solid #ddd;
}
.table-header-action {
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  width: 10%;
}

@media (max-width: 600px) {
  .action-button-container .remove-btn,
  .action-button-container .row-add-btn {
    flex: none;
    width: 100%;
  }
}

.row-add-btn {
  color: white;
  border: none;
  background-color: #2adb06;
}

.row-add-btn:hover {
  background-color: #28a700;
}

.remove-btn {
  color: #ffffff;
  background-color: #333333;
  border: none;
}

.remove-btn:hover {
  background-color: #333;
  border: none;
  color: white;
}

/************ Contract Information **********************************/

input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin: 5px;
  cursor: pointer;
}
.checkbox-row-contractType {
  display: grid;
  grid-template-columns: repeat(3, 2fr) !important;
  gap: 10px;
  width: 50% !important;
  margin-bottom: 10px;
}

.contract-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.contract-register-form-group {
  flex: 1;
  width: 100%;
  margin-bottom: 10px;
}

.contract-register-form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.contract-register-form-group input {
  width: 100%;
  height: 40px;
  padding: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.unitPrice-input {
  font-size: 14px;
  width: 50%;
  max-width: 100px;
  height: 30px;
  padding: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.contract-checkbox-card {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.disabled-input {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  border: 1px solid #ddd;
}

.contract-checkbox-card label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.contract-register-form-group select {
  width: 30%;
}

.table-container {
  outline: 1px solid #ccc !important;
  border-radius: 5px !important;
}

.branch-table-container {
  min-height: 400px !important;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: "0 8px";
  border: none !important;
  border-radius: 10px !important;
}

.table-container table thead th.table-header {
  text-align: center;
  font-size: 15px;
}

.table-container table thead th.table-header,
.table-container table tbody td.table-cell {
  text-align: center;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}

.table-container table tbody td.table-cell:last-child {
  text-align: center;
  vertical-align: middle;
  margin-top: 5px;
}

.table-container table tbody td.table-cell input {
  background: #ffffff;
  height: 30px;
  padding: 5px;
  margin: 5px;
}

.table-row-add-btn {
  margin-top: 5px;
  color: #999;
  border: none;
  border: 1px solid #2adb06;
  cursor: pointer;
}

.table-row-add-btn:hover {
  border: 1px solid #2adb06;
}

.client-cards-container {
  display: flex;
  gap: 30px;
  /* Adds a 30px gap between the two cards */
  margin-top: 20px;
  /* Adds a gap at the top of the container */
}

.client-card {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  margin: 10px;
}

.client-content-card {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /* width: 100%; */
  margin: 10px;

  /*scrollable in table */
  width: 80%;
  /* You can use any fixed width value */
  max-width: 100%;
  /* Ensures responsiveness */
  overflow: hidden;
  /* Prevents content overflow if the parent expands */
}

.client-card-body {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
}

.client-content-body {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
}

.client-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  /* Aligns the list centrally inside the sidebar */
  padding: 10px;
  height: 100%;
}

.client-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  /* Makes the list take up full width */
}

.client-sidebar li {
  padding: 10px;
  text-align: center;
  /* Centers the text inside the list items */
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #ddd;
  width: 200px;
}

.client-sidebar li:last-child {
  border-bottom: none;
}

.client-sidebar li:hover {
  background-color: #f0f0f0;
}

.client-sidebar li.active {
  background-color: #cccccc;
  color: black;
  border-radius: 10px;
  /* Adjust the radius as needed */
  padding: 10px;
  width: 200px;
}

/* List item */
.client-detail-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Optional for smooth transition */
}

.client-detail-item .icon {
  font-size: 30px;
  margin-right: 8px;
  /* Space between the icon and text */
}

/* Add a border above the first item */
.client-detail-item:nth-child(1) {
  border-top: 2px solid #ccc;
  /* Add a border above the first item */
}

/* Add a border below the 2nd and 4th items */
.client-detail-item:nth-child(2),
.client-detail-item:nth-child(4) {
  border-bottom: 2px solid #ccc;
  /* Add a border below these items */
}

.client-detail-item:nth-child(2):hover,
.client-detail-item:nth-child(4):hover {
  border-bottom-color: #888;
  /* Change border color on hover */
}

/* client register */
/*  {
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 100%;
} */

.client-register-form-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Two columns */
  gap: 20px;
  margin-bottom: 25px;
}

/*  .register-input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
} */
.client-register-input-container {
  display: flex;
  /* Use Flexbox to align children on the same line */
  align-items: center;
  /* Vertically align label and input */
  gap: 10px;
}

.client-register-label-group label {
  white-space: nowrap;
  /* Prevent the label from breaking */
  min-width: 120px;
  /* Ensure label has a fixed minimum width */
  text-align: left;
  /* font-size: 14px;
    font-weight: 600;
    color: #555;
    width: 100px;
    text-align: left; */
}

.client-register-input-field,
.client-register-textbox-field,
.client-register-select-field {
  flex-grow: 1;
  /* Input will take up remaining space */
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /* width: 100%;  Ensures inputs take up available width */
}

.client-register-input-field:focus,
.client-register-textbox-field:focus,
.client-register-select-field:focus {
  border-color: #4caf50;
  outline: none;
}

.span-two-columns {
  grid-column: span 2;
  /* Ensure the buttons span across both columns */
}

.client-register-button-container {
  display: flex;
  justify-content: right;
  /* Center the buttons horizontally */
  gap: 15px;
  /* Space between buttons */
  width: 100%;
  /* Ensure container spans full width */
  margin-bottom: 20px;
  /* Keep your desired bottom margin */
}
.client-register-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: #2adb06;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 20%;
  height: 45px;
}
.acc-manager-register-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: #2adb06;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 50%;
  height: 45px;
}

.acc-manager-search-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: #333333;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 50%;
  height: 45px;
}

.acc-manager-search-button:hover {
  background-color: #666666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .client-register-form-container {
    grid-template-columns: 1fr;
    /* Single column on small screens */
  }

  .client-register-input-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-register-button-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-register-button {
    width: 100%;
    /* Full width on small screens */
    padding: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  .client-register-input-field,
  .client-register-textbox-field,
  .client-register-select-field {
    font-size: 12px;
  }

  .register-button {
    font-size: 14px;
  }
}

/* client register */

/* Add styles for scrollable table */
.client-table-container {
  max-height: 400px;
  /* Set the desired height */
  overflow-y: auto;
  /* Enable vertical scrolling */
  overflow-x: auto;
  /* Enable horizontal scrolling */
  display: block;
  /* Ensure the table can scroll horizontally */
}

.client-table {
  width: 100%;
  border-collapse: collapse;
  /* Optional: collapse the borders for a cleaner look */
  min-width: 600px;
  /* Set a minimum width to enable horizontal scrolling */
}

.client-table th,
.client-table td {
  padding: 13px;
  /* Adjust padding as needed */
  text-align: center;
}

.client-table th {
  background-color: #333333;
  color: white;
  /* table header lock */
  /* position: sticky;
  top: 0;
  z-index: 1; */
}

.client-table td {
  border-bottom: 1px solid #ececec;
}

.client-table th:last-child {
  border: none;
  /* Remove the border */
}

/* Branch Button*/

.branch-register-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: #2adb06;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 25%;
  height: 45px;
}

.branch-register-button:hover {
  background-color: #28a700;
}

.branch-search-button {
  font-size: 16px;
  border-radius: 5px;
  background-color: #333333;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 25%;
  height: 45px;
}

.branch-search-button:hover {
  background-color: #666666;
}

/* Contract Info */
/* FileUpload.css */
/* Ensure the form group has a left-aligned layout */
.contract-form-group {
  display: flex;
  align-items: center; /* Aligns items vertically in the center */
  margin-bottom: 15px; /* Space between fields */
  width: 100%; /* Ensure that the group takes up the full available width */
}

/* Set label styling */
.contract-form-group label {
  font-weight: bold;
  margin-right: 10px; /* Space between label and input */
  width: 150px; /* Set a fixed width for the label */
}

/* Ensure inputs and select elements are aligned */
.contract-form-group input,
.contract-form-group select {
  width: 100%; /* Full width of the form field */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensure padding and border are inside the width */
  height: 40px; /* Uniform height */
}

/* Dropzone (drag-and-drop area) styling */
.dropzone {
  background-color: #fafafa;
  border-radius: 8px;
  padding: 30px;
  cursor: pointer;
  width: 100%; /* Ensure the dropzone is full width */
  text-align: center;
}

.dropzone p {
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

/* File preview section */
.file-previews {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align previews to the left */
  width: 100%; /* Ensure it takes full width */
}

/* File preview styling */
.file-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 10px; */
  /* border-bottom: 1px solid #eee; */
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
  width: 100%; /* Ensure file previews align with inputs */
}

/* Image preview styling */
.file-preview-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

/* Icon for non-image files */
.file-preview-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.file-info {
  display: flex;
  align-items: center;
}

/* File name styling */
.file-name {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

/* Delete button styling */
.delete-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 30px;
  margin-top: auto;
}

.delete-btn:hover {
  background-color: #e33d3f;
}

.client-search-button {
  width: 130px;
  padding: 6px 24px;
  font-size: 16px;
  background-color: #2adb06;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /* height: 40px; */
  text-align: center;
}

input.disabled-checkbox:hover {
  cursor: not-allowed !important;
}

/* Container for the header */
.order-header-container {
    /* width: 100%;   */
    margin-bottom: 20px;  /* Space below the header */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    padding-right: 20px;
}

/* Header row to align header and button */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;  /* Space below header */
    margin-bottom: 20px;  /* Space below the header */
    border-bottom: 2px solid #ccc; /* Adds a border line under the header */
    padding-bottom: 10px;  /* Adds space below the text before the border */
}

/* Styling for header */
.order-header {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
/* Header button container to align buttons to the right */
.header-buttons {
    display: flex;
    gap: 10px;  
    /* width: 22%; */
}
/* Styling for the button */
.order-button {
    background-color: #FFAF49;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

/* Button hover effect */
.order-button:hover {
    background-color: #FFAF49;
}
.return-button {
    background-color: white;
    color: black;
    border: #2ADB06 solid 2px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

/* Button hover effect */
.return-button:hover {
    background-color: #28A700;
}

/* Container for the cards */
.order-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;  /* Adds space between the cards */
    width: 100%;
    /* background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Standard Card Styling */
.order-card {
    width: 50%;  /* Set a width of 50% to allow them to fit side by side */
    max-width: 600px;
}

/* Larger Card Styling */
.order-card-larger {
    width: 48%;  /* Set a width of 48% to allow them to fit side by side */
    max-width: 800px;
}

/* Form Row Layout (for cards) */
.order-form-row {
    margin-bottom: 15px;
    justify-content: space-between;
}

/* Form Group Layout */
.order-form-group {
    display: flex;
    align-items: center;  /* Vertically align the label and span */
    text-align: left;
}

.order-form-group label {
    flex-shrink: 0;        /* Prevent label from shrinking */
    font-weight: 500;
    color: #333;
    width: 150px;          /* Set a fixed width for labels */
    margin-right: 10px;    /* Space between label and span */
    white-space: nowrap;   /* Prevent label text from wrapping */
}

.order-form-group span {
    font-size: 14px;
    color: #333;
    white-space: nowrap;   /* Prevent span text from wrapping */
}
.second-order-form-group {
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}
/* Label Styling */
 .second-order-form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

/* Input and Textarea Styling */
.order-form-group input, .second-order-form-group textarea {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    outline: none;
}

/* Textarea Resize and Minimum Height */
.second-order-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Focus States for Input and Textarea */
.order-form-group input:focus,
.second-order-form-group textarea:focus {
    border-color: #0066cc;
}



/* Styling the container holding the file icon and link */
.uploaded-file {
    gap: 10px;                 /* Space between icon + link pairs */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Styling each file icon + link pair to be stacked vertically */
.file-pair {
    display: inline-flex;
    align-items: center;       /* Center the icon and the link */
    gap: 5px;                  /* Add space between icon and link */
}

/* File icon styling */
.file-icon {
    font-size: 30px;           /* Icon size */
    color: #0066cc;            /* Icon color */
}

/* File link styling */
.file-link {
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    word-wrap: break-word;
}

/* File link hover effect */
.file-link:hover {
    text-decoration: underline;
}

.scroll-hidden {
 overflow-y: auto;
 height: 93vh;
 padding-top: 0 !important;
 /* margin-top: 0 !important; */
 /* scrollbar-width: none; */
 /* -ms-overflow-style: none; */
}
/* .scroll-hidden::-webkit-scrollbar { */
 /* display: none; */
/* } */
  
.contract-card {
    padding: 20px;
  }

  .contract-details {
    display: flex;
    flex-direction: column;
  }

  .contract-table{
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .contract-cell{
    display: table-cell;
    vertical-align: top;
    padding: 6px 10px;
  }

  .contract-row {
    display: table-row;
  }

  .check-item {
    padding-left: 6px;
    margin-bottom: 6px;
  }

  .contract-left,
  .contract-right {
    display: table-cell;
    padding: 4px 12px;
    vertical-align: top;
    /* width: 48%; */
  }

  .contract-left label,
  .contract-right label {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .contract-left ul,
  .contract-right ul {
    /* padding-left: 20px; */
    margin: 0;
    padding: 0;
    list-style-position: inside;
  }

  .contract-row li{
    margin-left: 12px;
  }

  .contract-textarea {
    width: 100%;
    height: 100px;
    resize: none;
    overflow-y: auto; /* Enables scrolling */
  }

  /* .button-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  } */

  .submit-button,
  .cancel-button {
    width: 100px;
  }

  .contract-days-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .contract-days-row .contract-left,
  .contract-days-row .contract-right {
    width: 48%;
  }

  /* Responsive Design for iPhone and smaller devices */
  @media (max-width: 600px) {
    .contract-row {
      display: table;
      flex-direction: column;
      /* align-items: flex-start; */
      margin-bottom: 15px;
    }

    .contract-left,
    .contract-right {
      width: 100%;
    }

    .contract-textarea {
      height: 120px;
    }

    .button-container {
      flex-direction: column;
      align-items: center;
    }

    .contract-table{
      display: table;
      width: 100%;
      table-layout: fixed;
    }

    .contract-cell{
      display: table-cell;
      vertical-align: top;
      padding: 6px 10px;
    }

    .contract-days-row {
      flex-direction: row; /* one row */
      flex-wrap: wrap;
      gap: 10px;
    }
    .contract-days-row .contract-left,
    .contract-days-row .contract-right {
      width: 60%;
    }
  }

/**START Facebookフォローリングブロックのため */
.fb-plugin-responsive {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}
.fb-plugin-responsive .fb-page,
.fb-plugin-responsive iframe {
  width: 100% !important;
  min-width: 220px;
  max-width: 100%;
  box-sizing: border-box;
}
/**END Facebookフォローリングブロックのため */

.footer {
    background-color: #f0f0f0;
    padding: 5px 5px;
    text-align: center;
    width: 100%;
  }
  
  .footer-content {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    display: inline-flex;            /* use inline-flex to keep on single line */
    align-items: center;
    justify-content: center;
    white-space: nowrap;            /* prevent wrapping */
  }
  
  
  .footer-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
  /* Responsive: slightly smaller logo/text for very small screens */
  @media screen and (max-width: 480px) {
    .footer-content {
      font-size: 12px;
    }
  
    .footer-logo {
      width: 30px;
      height: 30px;
    }
  }
  
