@charset "UTF-8";.Layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #636C79;
}
.Layout__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 1.125rem;
  color: #6c757d;
}
.Layout__container {
  display: flex;
  flex: 1;
  height: 100vh;
}
.Layout__sidebar {
  width: 230px;
  background-color: #636C79;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1030;
}
@media screen and (max-width: 768px) {
  .Layout__sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .Layout__sidebar--open {
    transform: translateX(0);
  }
}
.Layout__sidebar--admin {
  background-color: #4d4e8d;
}
.Layout__sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.Layout__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  margin-top: 50px;
  margin-bottom: 75px;
}
.Layout__logo-image {
  height: 100%;
  width: auto;
}
.Layout__nav {
  flex: 1;
}
.Layout__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.Layout__nav-item {
  margin-bottom: 30px;
  padding: 0 20px;
}
.Layout__nav-item--active .Layout__nav-link {
  width: 190px;
  height: 45px;
  border-radius: 22.5px;
  background: #fff;
  color: #636C79;
  padding-left: 25px;
}
.Layout__nav-item--active .Layout__nav-link .Layout__nav-icon {
  filter: none;
}
.Layout__nav-link {
  display: flex;
  align-items: center;
  padding-left: 25px;
  height: 45px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.15s ease;
}
.Layout__nav-link:hover {
  text-decoration: none;
  opacity: 0.8;
}
.Layout__nav-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
.Layout__nav-text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.Layout__logout {
  margin-top: auto;
  padding: 1.5rem 0;
}
.Layout__logout-button {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 45px;
  height: 45px;
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.Layout__logout-button:hover {
  opacity: 0.8;
}
.Layout__logout-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
.Layout__content-wrapper {
  flex: 1;
  margin-left: 230px;
  width: calc(100% - 230px);
  display: flex;
  flex-direction: column;
}
.Layout__header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 0 1.5rem;
  height: 60px;
  display: none;
  justify-content: flex-end;
  align-items: center;
  z-index: 1029;
  border-bottom: 1px solid #e0e0e0;
}
.Layout__header--admin {
  background-color: #4d4e8d;
}
.Layout__header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.Layout__notification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.Layout__notification-icon {
  width: 20px;
  height: 20px;
}
.Layout__user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.Layout__user-name {
  font-weight: 500;
  color: #333333;
}
.Layout__user-role {
  font-size: 0.875rem;
  color: #6c757d;
}
.Layout__main {
  flex: 1;
  overflow: auto;
  padding: 50px 30px;
  border-radius: 20px;
  background-color: #F8F8F8;
}
.Layout__content {
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .Layout__sidebar {
    width: 75%;
  }
  .Layout__content-wrapper {
    margin-left: 0;
    width: 100%;
  }
  .Layout__header {
    padding: 0 1rem;
  }
  .Layout__main {
    padding: 0.5rem;
  }
}.Login {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f7fa;
}
.Login__header {
  width: 100%;
  height: 110px;
  background-color: #4d4e8d;
  display: flex;
  align-items: center;
}
.Login__header-content {
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.Login__logo-container {
  display: flex;
  align-items: center;
}
.Login__logo-image {
  height: 53px;
  width: auto;
}
.Login__container {
  display: flex;
  width: 100%;
  height: calc(100vh - 110px);
}
@media (max-width: 768px) {
  .Login__container {
    flex-direction: column;
  }
}
.Login__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F8F8;
  height: 100%;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  .Login__left {
    padding: 1.5rem;
  }
}
.Login__admin-info {
  width: 100%;
  text-align: center;
  padding: 60px 50px;
}
.Login__admin-info__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 3rem;
}
@media (max-width: 480px) {
  .Login__admin-info__title {
    font-size: 2rem;
  }
}
.Login__admin-info__client-link {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}
.Login__admin-info__client-link__text {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 500;
}
.Login__admin-info__client-link__url {
  display: inline-block;
  font-size: 1.1rem;
  color: #4D4E8D;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 2px solid #4D4E8D;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 600;
  word-break: break-all;
}
.Login__admin-info__client-link__url:hover {
  background-color: #4D4E8D;
  color: white;
}
@media (max-width: 480px) {
  .Login__admin-info__client-link__url {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}
.Login__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 60px 50px;
}
@media (max-width: 768px) {
  .Login__right {
    padding: 1.5rem;
  }
}
.Login__form-container {
  width: 100%;
  max-width: 400px;
}
.Login h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-weight: 600;
}
.Login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Login__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.Login__form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}
.Login__form-group input {
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.Login__form-group input:focus {
  border-color: #175e99;
  outline: none;
}
.Login__form-group input.error {
  border-color: #dc3545;
}
.Login__error, .Login__error-general {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.3rem;
}
.Login__error-general {
  background-color: rgba(220, 53, 69, 0.1);
  padding: 0.8rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 0.5rem;
}
.Login__button {
  background-color: #4D4E8D;
  color: white;
  border: none;
  border-radius: 9px;
  padding: 0.8rem 1rem;
  font-size: 14px;
  font-weight: 500;
  width: 128px;
  height: 48px;
  cursor: pointer;
  margin: 30px auto 0;
  transition: background-color 0.3s;
}
.Login__button:hover {
  background-color: #3b3c6d;
}
.Login__button:disabled {
  background-color: #7a7bb3;
  cursor: not-allowed;
}
.Login__attention {
  font-size: 0.8rem;
  font-weight: 500;
  color: #939393;
  text-align: center;
  margin-top: 1rem;
  line-height: 2;
}
.Login__attention a {
  color: #939393;
  text-decoration: none;
}
.Login {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f7fa;
}
.Login__header {
  width: 100%;
  height: 110px;
  background-color: #4d4e8d;
  display: flex;
  align-items: center;
}
.Login__header--client {
  background-color: #636C79;
}
.Login__header-content {
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.Login__logo-container {
  display: flex;
  align-items: center;
}
.Login__logo-image {
  height: 53px;
  width: auto;
}
.Login__container {
  display: flex;
  width: 100%;
  height: calc(100vh - 110px);
}
@media (max-width: 768px) {
  .Login__container {
    flex-direction: column;
  }
}
.Login__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F8F8;
  height: 100%;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  .Login__left {
    padding: 1.5rem;
  }
}
.Login__info {
  width: 100%;
  padding: 60px 50px;
}
.Login__info-content {
  width: 100%;
}
.Login__notices-wrapper {
  width: 100%;
}
.Login__loading {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  color: #333333;
  font-style: italic;
}
.Login__no-notices {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  color: #333333;
}
.Login__notice {
  border-radius: 8px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.Login__notice:last-child {
  margin-bottom: 0;
}
.Login__notice-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #333333;
}
.Login__notice-image {
  margin-bottom: 0.8rem;
}
.Login__notice-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 4px;
}
.Login__notice-content-wrapper {
  max-height: 250px;
  overflow-y: auto;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  /* スクロールバーのスタイル */
}
.Login__notice-content-wrapper::-webkit-scrollbar {
  width: 6px;
}
.Login__notice-content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.Login__notice-content-wrapper::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
.Login__notice-content {
  font-size: 0.95rem;
  color: #333333;
}
.Login__notice-content p {
  margin-bottom: 0.8rem;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.Login__notice-date {
  display: block;
  font-size: 0.85rem;
  color: #9a9a9a;
  margin-top: 1rem;
  text-align: right;
}
.Login__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 60px 50px;
}
@media (max-width: 768px) {
  .Login__right {
    padding: 1.5rem;
  }
}
.Login__form-container {
  width: 100%;
  max-width: 400px;
}
.Login h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-weight: 600;
}
.Login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Login__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.Login__form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}
.Login__form-group input {
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.Login__form-group input:focus {
  border-color: #175e99;
  outline: none;
}
.Login__form-group input.error {
  border-color: #dc3545;
}
.Login__error, .Login__error-general {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.3rem;
}
.Login__error-general {
  background-color: rgba(220, 53, 69, 0.1);
  padding: 0.8rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 0.5rem;
}
.Login__button {
  background-color: #4D4E8D;
  color: white;
  border: none;
  border-radius: 9px;
  padding: 0.8rem 1rem;
  font-size: 14px;
  font-weight: 500;
  width: 128px;
  height: 48px;
  cursor: pointer;
  margin: 30px auto 0;
  transition: background-color 0.3s;
}
.Login__button:hover {
  background-color: #3b3c6d;
}
.Login__button:disabled {
  background-color: #7a7bb3;
  cursor: not-allowed;
}
.Login__attention {
  font-size: 0.8rem;
  font-weight: 500;
  color: #939393;
  text-align: center;
  margin-top: 1rem;
  line-height: 2;
}
.Login__attention a {
  color: #939393;
  text-decoration: none;
}.CommonTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.CommonTable__th {
  font-weight: bold;
  font-size: 14px;
  color: #505050;
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.CommonTable__td {
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
}
.CommonTable__td--actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td .actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.NotificationTable__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.CommonTable__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}
.CommonTable__status-badge--primary {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--success {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--neutral {
  background-color: #505050;
}
.CommonTable__status-badge--pending {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--scheduled {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--sent {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--downloaded {
  background-color: #505050;
}
.CommonTable__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.CommonTable__status-badge--cancelled {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--active {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--inactive {
  background-color: #505050;
}
.CommonTable__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.CommonTable__action-button:hover {
  background-color: #f5f7fa;
}

.CommonPagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 14px;
}
.CommonPagination__select {
  margin-right: 1rem;
}
.CommonPagination__select select {
  width: 70px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 0.5rem;
  font-size: 14px;
  color: #505050;
  background-color: white;
}
.CommonPagination__info {
  margin-right: 1rem;
  font-size: 14px;
  color: #505050;
}
.CommonPagination__buttons {
  display: flex;
  gap: 0.5rem;
}
.CommonPagination__buttons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}
.CommonPagination__buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.admin-list__header {
  padding: 15px 20px 40px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-list__header__title {
  font-size: 24px;
  font-weight: bold;
  color: #1F2937;
  flex: 1;
}
.admin-list__header__actions {
  display: flex;
  gap: 10px;
}
.admin-list__main, .InvoiceList__main {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.admin-list__filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.admin-list__filters__group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}
.admin-list__filters__group__label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6c757d;
}
.admin-list__filters__group__input, .admin-list__filters__group__select {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}
.admin-list__filters__group__input:focus, .admin-list__filters__group__select:focus {
  outline: none;
  border-color: #175e99;
}
.admin-list__filters__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.admin-list__action-button {
  font-size: 14px;
  font-weight: bold;
  height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-list__action-button--primary {
  background-color: #175e99;
  color: white;
}
.admin-list__action-button--primary:hover {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.admin-list__action-button--secondary {
  background-color: white;
  color: #333333;
  border: 1px solid #e0e0e0;
}
.admin-list__action-button--secondary:hover {
  background-color: #f8f9fa;
}
.admin-list__action-button--icon {
  padding: 8px 16px;
  height: auto;
}
.admin-list__filter-clear {
  background: none;
  border: none;
  color: #175e99;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  transition: opacity 0.3s ease;
}
.admin-list__filter-clear:hover {
  opacity: 0.7;
}
.admin-list__table-container {
  flex: 1;
  overflow: auto;
  min-height: 0;
}
.admin-list__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
}
.admin-list__status--active {
  background-color: rgba(46, 160, 67, 0.1);
  color: #2EA043;
}
.admin-list__status--inactive {
  background-color: rgba(110, 231, 183, 0.1);
  color: #10B981;
}
.admin-list__table-action, .InvoiceList__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.admin-list__table-action:hover, .InvoiceList__action-icon:hover {
  opacity: 0.7;
}
.admin-list__table-action svg, .InvoiceList__action-icon svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .admin-list__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .admin-list__header__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .admin-list__filters__group {
    width: 100%;
  }
  .admin-list__filters__actions {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.MainActionBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 128px;
  height: 46px;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #175e99;
}
.MainActionBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.MainActionBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.MainActionBtn--register {
  background-color: #fd5747;
}
.MainActionBtn--register:hover {
  background-color: rgb(252.4516129032, 40.935483871, 20.5483870968);
}
.MainActionBtn--file-register {
  width: 160px;
  background-color: #e88547;
}
.MainActionBtn--file-register:hover {
  background-color: rgb(224, 103.4782608696, 28);
}
.MainActionBtn--import {
  background-color: #4d4e8d;
}
.MainActionBtn--import:hover {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.MainActionBtn--export {
  background-color: #47e894;
}
.MainActionBtn--export:hover {
  background-color: rgb(28, 224, 121.7391304348);
}
.MainActionBtn--download {
  background-color: #4787e8;
}
.MainActionBtn--download:hover {
  background-color: rgb(28, 105.9130434783, 224);
}
.MainActionBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.MainActionBtn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.MainActionBtn svg,
.MainActionBtn .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.Filter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.Filter__item {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  margin-bottom: 40px;
}
.Filter__item label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6c757d;
}
.Filter__item select,
.Filter__item input {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  transition: border-color 0.2s;
}
.Filter__item select:focus,
.Filter__item input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.Filter__item select {
  cursor: pointer;
}
.Filter__item select:hover {
  border-color: rgb(198.5, 198.5, 198.5);
}
.Filter__item input::placeholder {
  color: rgb(161.1158798283, 167.8755364807, 173.8841201717);
}
.Filter__clear {
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  margin-left: auto;
  transition: all 0.2s;
  color: #333333;
  margin-bottom: 40px;
}
.Filter__clear:hover {
  background-color: #f5f7fa;
}
.Filter__clear:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.Filter__clear:active {
  transform: translateY(1px);
}
.Filter__clear:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Filter__clear:disabled:hover {
  background-color: transparent;
}
@media (max-width: 768px) {
  .Filter {
    flex-direction: column;
    gap: 10px;
  }
  .Filter__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .Filter__item select,
  .Filter__item input {
    width: 100%;
  }
  .Filter__clear {
    margin-left: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}

.InvoiceList {
  width: 100%;
  max-width: 100%;
  background-color: #f5f7fa;
  min-height: calc(100vh - 64px);
}
.InvoiceList__content {
  display: flex;
  width: 100%;
  height: 100%;
}
.InvoiceList__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.InvoiceList__modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  padding: 1.5rem;
}
.InvoiceList__modal h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #175e99;
}
.InvoiceList__modal-content {
  margin-bottom: 1.5rem;
}
.InvoiceList__modal-content p {
  margin-bottom: 1rem;
}
.InvoiceList__modal-content input[type=date] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
}
.InvoiceList__modal-content input[type=date]:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.InvoiceList__modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}
.InvoiceList__modal-buttons button {
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.InvoiceList__modal-buttons button:hover {
  background-color: #f5f7fa;
}
.InvoiceList__modal-buttons button.primary-button {
  background-color: #175e99;
  color: white;
  border-color: #175e99;
}
.InvoiceList__modal-buttons button.primary-button:hover {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.InvoiceList .delete-button {
  border-color: #721c24;
  color: #721c24;
}
.InvoiceList .delete-button:hover {
  background-color: #721c24;
  color: white;
}
.InvoiceList__sidebar {
  width: 133px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  flex-shrink: 0;
  border-right: 1px solid #E0E0E0;
  margin-right: 20px;
  padding-right: 20px;
}
.InvoiceList__sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.InvoiceList__sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
.InvoiceList__sidebar-item:hover, .InvoiceList__sidebar-item.active {
  color: #175e99;
}
.InvoiceList__sidebar-count {
  padding: 2px 8px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}
.InvoiceList__main {
  flex: 1;
  overflow-x: auto;
}
.InvoiceList__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.InvoiceList__header h1 {
  font-size: 1.5rem;
  color: #175e99;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .InvoiceList__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .InvoiceList__header h1 {
    font-size: 1.125rem;
  }
}
.InvoiceList__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .InvoiceList__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.InvoiceList__upload-status {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 10px;
}
.InvoiceList__upload-status--loading {
  background-color: #e9f5ff;
  color: #0072c6;
}
.InvoiceList__upload-status--error {
  background-color: #ffebee;
  color: #d32f2f;
}
.InvoiceList__upload-status--success {
  background-color: #e8f5e9;
  color: #388e3c;
}
@media screen and (max-width: 480px) {
  .InvoiceList__upload-status {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}
.InvoiceList__upload-progress {
  width: 100%;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  margin-top: 4px;
  overflow: hidden;
}
.InvoiceList__upload-progress-bar {
  height: 100%;
  background-color: #0072c6;
  transition: width 0.3s ease;
}
.InvoiceList__upload-details {
  font-size: 0.9em;
  margin-top: 4px;
}
.InvoiceList__upload-summary {
  font-weight: bold;
  margin-bottom: 8px;
}
.InvoiceList__upload-details-list {
  max-height: 300px;
  overflow-y: auto;
  margin: 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 8px;
}
.InvoiceList__upload-details-list h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 14px;
}
.InvoiceList__upload-details-table {
  width: 100%;
  border-collapse: collapse;
}
.InvoiceList__upload-details-header {
  display: flex;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.InvoiceList__upload-details-body {
  max-height: 200px;
  overflow-y: auto;
}
.InvoiceList__upload-details-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 4px 0;
}
.InvoiceList__upload-details-row--success .InvoiceList__upload-details-cell:nth-child(2) {
  color: #388e3c;
}
.InvoiceList__upload-details-row--error .InvoiceList__upload-details-cell:nth-child(2) {
  color: #d32f2f;
}
.InvoiceList__upload-details-row:last-child {
  border-bottom: none;
}
.InvoiceList__upload-details-cell {
  flex: 1;
  padding: 2px 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.InvoiceList__upload-details-cell:first-child {
  flex: 2;
}
.InvoiceList__upload-details-cell:last-child {
  flex: 3;
}
.InvoiceList__upload-clear-button {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
  margin-top: 4px;
  font-size: 0.8em;
}
.InvoiceList__upload-clear-button:hover {
  text-decoration: none;
}
.InvoiceList__action-icon {
  padding: 4px;
  font-size: 16px;
}
.InvoiceList__bulk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #f5f7fa;
  border-radius: 8px;
  border: 1px solid #175e99;
}
.InvoiceList__bulk-actions span {
  font-weight: bold;
  color: #175e99;
}
@media screen and (max-width: 480px) {
  .InvoiceList__bulk-actions {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.InvoiceList__bulk-buttons {
  display: flex;
  gap: 0.5rem;
}
.InvoiceList__bulk-buttons button {
  padding: 0.4rem 0.75rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333333;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.InvoiceList__bulk-buttons button:hover {
  background-color: #175e99;
  color: white;
  border-color: #175e99;
}
@media screen and (max-width: 480px) {
  .InvoiceList__bulk-buttons {
    flex-wrap: wrap;
    width: 100%;
  }
  .InvoiceList__bulk-buttons button {
    flex: 1 1 calc(50% - 0.25rem);
  }
}
.InvoiceList__table-container {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: 8px;
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}
.InvoiceList__table {
  width: 100%;
  border-collapse: collapse;
}
.InvoiceList__table th, .InvoiceList__table td {
  padding: 0.75rem 1rem;
  text-align: left;
}
.InvoiceList__table th {
  font-weight: 500;
  color: #6c757d;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}
.InvoiceList__table tr:last-child td {
  border-bottom: none;
}
.InvoiceList__table tbody tr {
  transition: background-color 0.3s ease;
}
.InvoiceList__table tbody tr:hover {
  background-color: #f5f7fa;
}
.InvoiceList__no-data {
  text-align: center;
  padding: 2rem !important;
  color: #6c757d;
}
.InvoiceList__status-badge {
  display: inline-block;
  width: 82px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}
.InvoiceList__status-badge--sent {
  background: #8bb7a2;
  color: white;
}
.InvoiceList__status-badge--scheduled {
  background: #4d4e8d;
  color: white;
}
.InvoiceList__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.InvoiceList__status-badge--downloaded {
  background: #505050;
  color: white;
}
.InvoiceList__status-badge--cancelled {
  background-color: #f5c6cb;
  color: #721c24;
}
.InvoiceList__actions-cell {
  position: relative;
  display: flex;
  justify-content: center;
}
.InvoiceList__action-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.InvoiceList__action-menu-item {
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}
.InvoiceList__action-menu-item:hover {
  background-color: #f5f7fa;
  color: #175e99;
}
.InvoiceList__action-menu-item:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.InvoiceList__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.InvoiceList__pagination-button {
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.InvoiceList__pagination-button:hover:not(:disabled) {
  background-color: #175e99;
  color: white;
  border-color: #175e99;
}
.InvoiceList__pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.InvoiceList__pagination-info {
  font-size: 0.875rem;
  color: #6c757d;
}
.InvoiceList__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 100%;
}
.InvoiceList__loading p {
  font-size: 1.125rem;
  color: #6c757d;
}
.InvoiceList__error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
}
.InvoiceList__error p {
  margin-bottom: 0.5rem;
}
.InvoiceList__retry-button {
  background-color: white;
  border: 1px solid #721c24;
  color: #721c24;
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.InvoiceList__retry-button:hover {
  background-color: #721c24;
  color: white;
}
.InvoiceList__sort-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: pointer;
}
.InvoiceList__sort-icon img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.InvoiceList__sort-icon:hover img {
  opacity: 1;
}
.InvoiceList__sort-icon--active img {
  opacity: 1;
}
.InvoiceList__sort-direction {
  margin-left: 2px;
  font-size: 10px;
}
.InvoiceList__notification-destinations {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.InvoiceList__notification-destination {
  font-size: 13px;
  line-height: 1.4;
}
.InvoiceList__notification-destination-select {
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}.CommonPagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 14px;
}
.CommonPagination__select {
  margin-right: 1rem;
}
.CommonPagination__select select {
  width: 70px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 0.5rem;
  font-size: 14px;
  color: #505050;
  background-color: white;
}
.CommonPagination__info {
  margin-right: 1rem;
  font-size: 14px;
  color: #505050;
}
.CommonPagination__buttons {
  display: flex;
  gap: 0.5rem;
}
.CommonPagination__buttons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}
.CommonPagination__buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}.InvoicePreview {
  display: flex;
  flex-direction: column;
  height: 1000px;
  width: 100%;
}
.InvoicePreview__header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.InvoicePreview__header__back-button, .InvoicePreview__header__download-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}
.InvoicePreview__header__back-button {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  color: #495057;
}
.InvoicePreview__header__back-button:hover {
  background-color: #e9ecef;
}
.InvoicePreview__header__download-button {
  background-color: #0d6efd;
  color: white;
}
.InvoicePreview__header__download-button:hover {
  background-color: #0b5ed7;
}
.InvoicePreview__container {
  flex: 1;
  overflow: hidden;
  background-color: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
}
.InvoicePreview__container--loading {
  opacity: 0.3;
}
.InvoicePreview__iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}
.InvoicePreview__error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  color: #dc3545;
  font-weight: 500;
  text-align: center;
}
.InvoicePreview__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
}
.InvoicePreview__loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 3px solid #6c757d;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}.CommonTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.CommonTable__th {
  font-weight: bold;
  font-size: 14px;
  color: #505050;
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.CommonTable__td {
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
}
.CommonTable__td--actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td .actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.NotificationTable__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.CommonTable__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}
.CommonTable__status-badge--primary {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--success {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--neutral {
  background-color: #505050;
}
.CommonTable__status-badge--pending {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--scheduled {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--sent {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--downloaded {
  background-color: #505050;
}
.CommonTable__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.CommonTable__status-badge--cancelled {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--active {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--inactive {
  background-color: #505050;
}
.CommonTable__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.CommonTable__action-button:hover {
  background-color: #f5f7fa;
}

.CommonPagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 14px;
}
.CommonPagination__select {
  margin-right: 1rem;
}
.CommonPagination__select select {
  width: 70px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 0.5rem;
  font-size: 14px;
  color: #505050;
  background-color: white;
}
.CommonPagination__info {
  margin-right: 1rem;
  font-size: 14px;
  color: #505050;
}
.CommonPagination__buttons {
  display: flex;
  gap: 0.5rem;
}
.CommonPagination__buttons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}
.CommonPagination__buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.admin-list__header {
  padding: 15px 20px 40px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-list__header__title {
  font-size: 24px;
  font-weight: bold;
  color: #1F2937;
  flex: 1;
}
.admin-list__header__actions {
  display: flex;
  gap: 10px;
}
.admin-list__main, .DeliveryNoteList__main {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.admin-list__filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.admin-list__filters__group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}
.admin-list__filters__group__label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6c757d;
}
.admin-list__filters__group__input, .admin-list__filters__group__select {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}
.admin-list__filters__group__input:focus, .admin-list__filters__group__select:focus {
  outline: none;
  border-color: #175e99;
}
.admin-list__filters__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.admin-list__action-button {
  font-size: 14px;
  font-weight: bold;
  height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-list__action-button--primary {
  background-color: #175e99;
  color: white;
}
.admin-list__action-button--primary:hover {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.admin-list__action-button--secondary {
  background-color: white;
  color: #333333;
  border: 1px solid #e0e0e0;
}
.admin-list__action-button--secondary:hover {
  background-color: #f8f9fa;
}
.admin-list__action-button--icon {
  padding: 8px 16px;
  height: auto;
}
.admin-list__filter-clear {
  background: none;
  border: none;
  color: #175e99;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  transition: opacity 0.3s ease;
}
.admin-list__filter-clear:hover {
  opacity: 0.7;
}
.admin-list__table-container {
  flex: 1;
  overflow: auto;
  min-height: 0;
}
.admin-list__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
}
.admin-list__status--active {
  background-color: rgba(46, 160, 67, 0.1);
  color: #2EA043;
}
.admin-list__status--inactive {
  background-color: rgba(110, 231, 183, 0.1);
  color: #10B981;
}
.admin-list__table-action, .DeliveryNoteList__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.admin-list__table-action:hover, .DeliveryNoteList__action-icon:hover {
  opacity: 0.7;
}
.admin-list__table-action svg, .DeliveryNoteList__action-icon svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .admin-list__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .admin-list__header__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .admin-list__filters__group {
    width: 100%;
  }
  .admin-list__filters__actions {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.MainActionBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 128px;
  height: 46px;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #175e99;
}
.MainActionBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.MainActionBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.MainActionBtn--register {
  background-color: #fd5747;
}
.MainActionBtn--register:hover {
  background-color: rgb(252.4516129032, 40.935483871, 20.5483870968);
}
.MainActionBtn--file-register {
  width: 160px;
  background-color: #e88547;
}
.MainActionBtn--file-register:hover {
  background-color: rgb(224, 103.4782608696, 28);
}
.MainActionBtn--import {
  background-color: #4d4e8d;
}
.MainActionBtn--import:hover {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.MainActionBtn--export {
  background-color: #47e894;
}
.MainActionBtn--export:hover {
  background-color: rgb(28, 224, 121.7391304348);
}
.MainActionBtn--download {
  background-color: #4787e8;
}
.MainActionBtn--download:hover {
  background-color: rgb(28, 105.9130434783, 224);
}
.MainActionBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.MainActionBtn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.MainActionBtn svg,
.MainActionBtn .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.Filter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.Filter__item {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  margin-bottom: 40px;
}
.Filter__item label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6c757d;
}
.Filter__item select,
.Filter__item input {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  transition: border-color 0.2s;
}
.Filter__item select:focus,
.Filter__item input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.Filter__item select {
  cursor: pointer;
}
.Filter__item select:hover {
  border-color: rgb(198.5, 198.5, 198.5);
}
.Filter__item input::placeholder {
  color: rgb(161.1158798283, 167.8755364807, 173.8841201717);
}
.Filter__clear {
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  margin-left: auto;
  transition: all 0.2s;
  color: #333333;
  margin-bottom: 40px;
}
.Filter__clear:hover {
  background-color: #f5f7fa;
}
.Filter__clear:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.Filter__clear:active {
  transform: translateY(1px);
}
.Filter__clear:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Filter__clear:disabled:hover {
  background-color: transparent;
}
@media (max-width: 768px) {
  .Filter {
    flex-direction: column;
    gap: 10px;
  }
  .Filter__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .Filter__item select,
  .Filter__item input {
    width: 100%;
  }
  .Filter__clear {
    margin-left: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}

.DeliveryNoteList {
  width: 100%;
  max-width: 100%;
  background-color: #f5f7fa;
  min-height: calc(100vh - 64px);
}
.DeliveryNoteList__content {
  display: flex;
  width: 100%;
  height: 100%;
}
.DeliveryNoteList__sidebar {
  width: 133px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  flex-shrink: 0;
  border-right: 1px solid #E0E0E0;
  margin-right: 20px;
  padding-right: 20px;
}
.DeliveryNoteList__sidebar-title {
  font-size: 14px;
  margin-bottom: 15px;
}
.DeliveryNoteList__sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.DeliveryNoteList__sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
.DeliveryNoteList__sidebar-item:hover, .DeliveryNoteList__sidebar-item--active {
  color: #175e99;
}
.DeliveryNoteList__sidebar-count {
  padding: 2px 8px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}
.DeliveryNoteList__main {
  flex: 1;
  overflow-x: auto;
}
.DeliveryNoteList__content-main {
  width: 100%;
}
.DeliveryNoteList__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.DeliveryNoteList__header h2 {
  font-size: 1.5rem;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteList__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .DeliveryNoteList__header h2 {
    font-size: 1.125rem;
  }
}
.DeliveryNoteList__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteList__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.DeliveryNoteList__bulk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #f5f7fa;
  border-radius: 8px;
  border: 1px solid #175e99;
}
.DeliveryNoteList__bulk-actions span {
  font-weight: bold;
  color: #175e99;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteList__bulk-actions {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.DeliveryNoteList__bulk-buttons {
  display: flex;
  gap: 0.5rem;
}
.DeliveryNoteList__bulk-buttons button {
  padding: 0.4rem 0.75rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333333;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.DeliveryNoteList__bulk-buttons button:hover {
  background-color: #175e99;
  color: white;
  border-color: #175e99;
}
.DeliveryNoteList__bulk-buttons button.DeliveryNoteList__bulk-button--delete {
  background-color: white;
  border-color: #721c24;
  color: #721c24;
}
.DeliveryNoteList__bulk-buttons button.DeliveryNoteList__bulk-button--delete:hover {
  background-color: #721c24;
  color: white;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteList__bulk-buttons {
    flex-wrap: wrap;
    width: 100%;
  }
  .DeliveryNoteList__bulk-buttons button {
    flex: 1 1 calc(50% - 0.25rem);
  }
}
.DeliveryNoteList__table-container {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: 8px;
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}
.DeliveryNoteList__table {
  width: 100%;
  border-collapse: collapse;
}
.DeliveryNoteList__table th, .DeliveryNoteList__table td {
  padding: 0.75rem 1rem;
  text-align: left;
}
.DeliveryNoteList__table th {
  font-weight: 500;
  color: #6c757d;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}
.DeliveryNoteList__table tr:last-child td {
  border-bottom: none;
}
.DeliveryNoteList__table tbody tr {
  transition: background-color 0.3s ease;
}
.DeliveryNoteList__table tbody tr:hover {
  background-color: #f5f7fa;
}
.DeliveryNoteList__no-data {
  text-align: center;
  padding: 2rem !important;
  color: #6c757d;
}
.DeliveryNoteList__status-badge {
  display: inline-block;
  width: 82px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}
.DeliveryNoteList__status-badge--pending {
  background: #8bb7a2;
  color: white;
}
.DeliveryNoteList__status-badge--scheduled {
  background: #4d4e8d;
  color: white;
}
.DeliveryNoteList__status-badge--sent {
  background: #3498db;
  color: white;
}
.DeliveryNoteList__status-badge--downloaded {
  background: #505050;
  color: white;
}
.DeliveryNoteList__status-badge--cancelled {
  background-color: #f5c6cb;
  color: #721c24;
}
.DeliveryNoteList__actions-cell {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.DeliveryNoteList__action-icon {
  padding: 4px;
  font-size: 16px;
}
.DeliveryNoteList__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.DeliveryNoteList__pagination-button {
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.DeliveryNoteList__pagination-button:hover:not(:disabled) {
  background-color: #175e99;
  color: white;
  border-color: #175e99;
}
.DeliveryNoteList__pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.DeliveryNoteList__pagination-info {
  font-size: 0.875rem;
  color: #6c757d;
}
.DeliveryNoteList__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 100%;
}
.DeliveryNoteList__loading p {
  font-size: 1.125rem;
  color: #6c757d;
}
.DeliveryNoteList__error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
}
.DeliveryNoteList__error p {
  margin-bottom: 0.5rem;
}
.DeliveryNoteList__retry-button {
  background-color: white;
  border: 1px solid #721c24;
  color: #721c24;
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.DeliveryNoteList__retry-button:hover {
  background-color: #721c24;
  color: white;
}
.DeliveryNoteList__sort-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: pointer;
}
.DeliveryNoteList__sort-icon img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.DeliveryNoteList__sort-icon:hover img {
  opacity: 1;
}
.DeliveryNoteList__sort-icon--active img {
  opacity: 1;
}
.DeliveryNoteList__sort-direction {
  margin-left: 2px;
  font-size: 10px;
}
.DeliveryNoteList__missing-data {
  color: #999;
  font-style: italic;
  font-size: 0.9em;
}
.DeliveryNoteList__upload-status {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 10px;
}
.DeliveryNoteList__upload-status--loading {
  background-color: #e9f5ff;
  color: #0072c6;
}
.DeliveryNoteList__upload-status--error {
  background-color: #ffebee;
  color: #d32f2f;
}
.DeliveryNoteList__upload-status--success {
  background-color: #e8f5e9;
  color: #388e3c;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteList__upload-status {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}
.DeliveryNoteList__upload-progress {
  width: 100%;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  margin-top: 4px;
  overflow: hidden;
}
.DeliveryNoteList__upload-progress-bar {
  height: 100%;
  background-color: #0072c6;
  transition: width 0.3s ease;
}
.DeliveryNoteList__upload-details {
  font-size: 0.9em;
  margin-top: 4px;
}
.DeliveryNoteList__upload-summary {
  font-weight: bold;
  margin-bottom: 8px;
}
.DeliveryNoteList__upload-details-list {
  max-height: 300px;
  overflow-y: auto;
  margin: 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 8px;
}
.DeliveryNoteList__upload-details-list h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 14px;
}
.DeliveryNoteList__upload-details-table {
  width: 100%;
  border-collapse: collapse;
}
.DeliveryNoteList__upload-details-header {
  display: flex;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.DeliveryNoteList__upload-details-body {
  max-height: 200px;
  overflow-y: auto;
}
.DeliveryNoteList__upload-details-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 4px 0;
}
.DeliveryNoteList__upload-details-row--success .DeliveryNoteList__upload-details-cell:nth-child(2) {
  color: #388e3c;
}
.DeliveryNoteList__upload-details-row--error .DeliveryNoteList__upload-details-cell:nth-child(2) {
  color: #d32f2f;
}
.DeliveryNoteList__upload-details-row:last-child {
  border-bottom: none;
}
.DeliveryNoteList__upload-details-cell {
  flex: 1;
  padding: 2px 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.DeliveryNoteList__upload-details-cell:first-child {
  flex: 2;
}
.DeliveryNoteList__upload-details-cell:last-child {
  flex: 3;
}
.DeliveryNoteList__upload-clear-button {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
  margin-top: 4px;
  font-size: 0.8em;
}
.DeliveryNoteList__upload-clear-button:hover {
  text-decoration: none;
}
.DeliveryNoteList__notification-destination-select {
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}.DeliveryNotePreview {
  display: flex;
  flex-direction: column;
  height: 1000px;
  width: 100%;
}
.DeliveryNotePreview__header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.DeliveryNotePreview__header__back-button, .DeliveryNotePreview__header__download-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}
.DeliveryNotePreview__header__back-button {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  color: #495057;
}
.DeliveryNotePreview__header__back-button:hover {
  background-color: #e9ecef;
}
.DeliveryNotePreview__header__download-button {
  background-color: #0d6efd;
  color: white;
}
.DeliveryNotePreview__header__download-button:hover {
  background-color: #0b5ed7;
}
.DeliveryNotePreview__container {
  flex: 1;
  overflow: hidden;
  background-color: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
}
.DeliveryNotePreview__container--loading {
  opacity: 0.3;
}
.DeliveryNotePreview__iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}
.DeliveryNotePreview__error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  color: #dc3545;
  font-weight: 500;
  text-align: center;
}
.DeliveryNotePreview__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
}
.DeliveryNotePreview__loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 3px solid #6c757d;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}.BaseForm {
  width: 100%;
  margin: 0 auto;
}
.BaseForm__header {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.BaseForm__title {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.BaseForm__content {
  padding: 20px 0;
}
.BaseForm__form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.BaseForm__notice {
  background-color: #fffde7;
  border-left: 4px solid #fbc02d;
  padding: 12px 15px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.BaseForm__notice p {
  color: #5d4037;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
.BaseForm__section {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.BaseForm__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.BaseForm__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  padding-left: 10px;
  border-left: 4px solid #175e99;
}
.BaseForm__subsection-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 0 12px;
  color: #444;
  padding-left: 8px;
  border-left: 3px solid rgb(32.9971590909, 134.8579545455, 219.5028409091);
}
.BaseForm__field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.BaseForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.BaseForm__field--full {
  flex-basis: 100%;
  width: 100%;
  flex: none;
}
.BaseForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field {
    min-width: 100%;
  }
}
.BaseForm__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}
.BaseForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.BaseForm__required {
  color: #dc3545;
  margin-left: 5px;
}
.BaseForm__help {
  color: #666;
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 5px;
  font-style: italic;
}
.BaseForm__input, .BaseForm__select, .BaseForm__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.BaseForm__input:focus, .BaseForm__select:focus, .BaseForm__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.BaseForm__input--error, .BaseForm__select--error, .BaseForm__textarea--error {
  border-color: #dc3545;
}
.BaseForm__input--error:focus, .BaseForm__select--error:focus, .BaseForm__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.BaseForm__input--readonly, .BaseForm__select--readonly, .BaseForm__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.BaseForm__textarea {
  min-height: 100px;
  resize: vertical;
}
.BaseForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.BaseForm__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.BaseForm__actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .BaseForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.BaseForm__button {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s, border-color 0.3s;
  min-width: 120px;
}
.BaseForm__button:hover {
  transform: translateY(-1px);
}
.BaseForm__button:active {
  transform: translateY(0);
}
.BaseForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.BaseForm__button--primary {
  background-color: #4D4E8D;
  color: white;
}
.BaseForm__button--primary:hover:not(:disabled) {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.BaseForm__button--secondary {
  background-color: #ffffff;
  color: #505050;
  border: 1px solid #505050;
}
.BaseForm__button--secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #404040;
}
.BaseForm__button--danger {
  background-color: #dc3545;
  color: white;
}
.BaseForm__button--danger:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
@media screen and (max-width: 480px) {
  .BaseForm__button {
    width: 100%;
  }
}
.BaseForm__checkbox-container {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}
.BaseForm__permissions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.BaseForm__permissions-row:last-child {
  margin-bottom: 0;
}
.BaseForm__readonly-group {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.BaseForm__inline-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__form {
    padding: 20px;
  }
  .BaseForm__section-title {
    font-size: 1.1rem;
  }
}
.BaseForm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.BaseForm__table th, .BaseForm__table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.BaseForm__table th {
  font-weight: 600;
  color: #444;
  background-color: #f9f9f9;
}
.BaseForm__table tr:last-child td {
  border-bottom: none;
}
.BaseForm__table tr:hover {
  background-color: #f5f5f5;
}
.BaseForm__modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.BaseForm__modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.BaseForm__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.BaseForm__modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.BaseForm__modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}
.BaseForm__modal-close:hover {
  color: #333;
}
.BaseForm__modal-body {
  padding: 20px;
}
.BaseForm__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.BaseForm__loading, .BaseForm__empty {
  padding: 15px;
  text-align: center;
  color: #666;
}
.BaseForm__success {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}
.BaseForm__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.BaseForm__button--small {
  padding: 6px 12px;
  font-size: 0.9rem;
  min-width: auto;
}.NotificationPagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}
.NotificationPagination__info {
  color: #6c757d;
  font-size: 0.9rem;
}
.NotificationPagination__controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.NotificationPagination__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.NotificationPagination__button:hover:not(:disabled) {
  background-color: #f5f7fa;
  border-color: rgb(198.5, 198.5, 198.5);
}
.NotificationPagination__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.NotificationPagination__button--active {
  background-color: #175e99;
  border-color: #175e99;
  color: #ffffff;
}
.NotificationPagination__button--active:hover {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
  border-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.NotificationPagination__button--prev, .NotificationPagination__button--next {
  min-width: 32px;
}
.NotificationPagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #6c757d;
}

@media screen and (max-width: 480px) {
  .NotificationPagination {
    flex-direction: column;
  }
  .NotificationPagination__info {
    margin-bottom: 1rem;
  }
  .NotificationPagination__controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}.CommonTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.CommonTable__th {
  font-weight: bold;
  font-size: 14px;
  color: #505050;
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.CommonTable__td {
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
}
.CommonTable__td--actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td .actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.NotificationTable__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.CommonTable__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}
.CommonTable__status-badge--primary {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--success {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--neutral {
  background-color: #505050;
}
.CommonTable__status-badge--pending {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--scheduled {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--sent {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--downloaded {
  background-color: #505050;
}
.CommonTable__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.CommonTable__status-badge--cancelled {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--active {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--inactive {
  background-color: #505050;
}
.CommonTable__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.CommonTable__action-button:hover {
  background-color: #f5f7fa;
}.ClientNotificationList {
  padding: 2em 3em;
}
.ClientNotificationList__title {
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #333333;
}
.ClientNotificationList__loading, .ClientNotificationList__error {
  text-align: center;
  padding: 4em 2em;
  color: #6c757d;
  font-size: 1.4em;
}
.ClientNotificationList__loading i, .ClientNotificationList__error i {
  font-size: 3em;
  display: block;
  margin-bottom: 0.5em;
}
.ClientNotificationList__loading button, .ClientNotificationList__error button {
  margin-top: 1em;
  padding: 0.5em 2em;
  background-color: #175e99;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
}
.ClientNotificationList__loading button:hover, .ClientNotificationList__error button:hover {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.ClientNotificationList__content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2em;
}
.ClientNotificationList__table-container {
  overflow-x: auto;
}
.ClientNotificationList__empty {
  text-align: center;
  padding: 4em 2em;
  color: #6c757d;
  font-size: 1.4em;
}
.ClientNotificationList__image {
  width: 100px;
}
.ClientNotificationList__title {
  min-width: 300px;
}
.ClientNotificationList__date {
  width: 150px;
}
.ClientNotificationList__thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.ClientNotificationList__no-image {
  width: 80px;
  height: 60px;
  background-color: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #6c757d;
}
.ClientNotificationList__no-image i {
  font-size: 2em;
}
.ClientNotificationList__link {
  color: #175e99;
  text-decoration: none;
  font-weight: 500;
}
.ClientNotificationList__link:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .ClientNotificationList {
    padding: 1.5em;
  }
  .ClientNotificationList__title {
    font-size: 2em;
  }
  .ClientNotificationList__content {
    padding: 1.5em;
  }
  .ClientNotificationList__thumbnail {
    width: 60px;
    height: 45px;
  }
  .ClientNotificationList__no-image {
    width: 60px;
    height: 45px;
  }
  .ClientNotificationList__no-image i {
    font-size: 1.5em;
  }
}.ClientNotificationDetail {
  padding: 2em 3em;
  max-width: 1000px;
  margin: 0 auto;
}
.ClientNotificationDetail__loading, .ClientNotificationDetail__error {
  text-align: center;
  padding: 4em 2em;
  color: #6c757d;
  font-size: 1.4em;
}
.ClientNotificationDetail__loading i, .ClientNotificationDetail__error i {
  font-size: 3em;
  display: block;
  margin-bottom: 0.5em;
}
.ClientNotificationDetail__loading button, .ClientNotificationDetail__error button {
  margin-top: 1em;
  padding: 0.5em 2em;
  background-color: #175e99;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
}
.ClientNotificationDetail__loading button:hover, .ClientNotificationDetail__error button:hover {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.ClientNotificationDetail__header {
  margin-bottom: 2em;
}
.ClientNotificationDetail__back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1.5em;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333333;
  font-size: 1.3em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ClientNotificationDetail__back-button:hover {
  background-color: #f5f7fa;
  border-color: #175e99;
}
.ClientNotificationDetail__back-button i {
  font-size: 1em;
}
.ClientNotificationDetail__content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 3em;
}
.ClientNotificationDetail__title {
  font-size: 1.75em;
  font-weight: bold;
  color: #333333;
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.ClientNotificationDetail__meta {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #e0e0e0;
}
.ClientNotificationDetail__date {
  color: #6c757d;
  font-size: 0.875em;
}
.ClientNotificationDetail__image {
  margin-bottom: 3em;
  text-align: center;
}
.ClientNotificationDetail__main-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ClientNotificationDetail__body {
  font-size: 1em;
  line-height: 1.8;
  color: #333333;
}
.ClientNotificationDetail__body h1, .ClientNotificationDetail__body h2, .ClientNotificationDetail__body h3, .ClientNotificationDetail__body h4, .ClientNotificationDetail__body h5, .ClientNotificationDetail__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1.4;
}
.ClientNotificationDetail__body h1 {
  font-size: 1.25em;
}
.ClientNotificationDetail__body h2 {
  font-size: 1.125em;
}
.ClientNotificationDetail__body h3 {
  font-size: 1em;
}
.ClientNotificationDetail__body h4 {
  font-size: 0.875em;
}
.ClientNotificationDetail__body h5 {
  font-size: 0.75em;
}
.ClientNotificationDetail__body h6 {
  font-size: 0.6875em;
}
.ClientNotificationDetail__body p {
  margin-bottom: 1.5em;
}
.ClientNotificationDetail__body ul, .ClientNotificationDetail__body ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}
.ClientNotificationDetail__body li {
  margin-bottom: 0.5em;
}
.ClientNotificationDetail__body blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background-color: #f5f7fa;
  border-left: 4px solid #175e99;
  font-style: italic;
}
.ClientNotificationDetail__body img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
.ClientNotificationDetail__body a {
  color: #175e99;
  text-decoration: underline;
}
.ClientNotificationDetail__body a:hover {
  text-decoration: none;
}
.ClientNotificationDetail__body pre {
  background-color: #f5f7fa;
  padding: 1em;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.ClientNotificationDetail__body code {
  background-color: #f5f7fa;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}
.ClientNotificationDetail__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.ClientNotificationDetail__body table th, .ClientNotificationDetail__body table td {
  padding: 0.8em;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.ClientNotificationDetail__body table th {
  background-color: #f5f7fa;
  font-weight: bold;
}
@media (max-width: 480px) {
  .ClientNotificationDetail {
    padding: 1.5em;
  }
  .ClientNotificationDetail__content {
    padding: 2em 1.5em;
  }
  .ClientNotificationDetail__title {
    font-size: 1.375em;
  }
  .ClientNotificationDetail__body {
    font-size: 0.875em;
  }
  .ClientNotificationDetail__body h1 {
    font-size: 1.125em;
  }
  .ClientNotificationDetail__body h2 {
    font-size: 1em;
  }
  .ClientNotificationDetail__body h3 {
    font-size: 0.875em;
  }
  .ClientNotificationDetail__body h4 {
    font-size: 0.8125em;
  }
  .ClientNotificationDetail__body h5 {
    font-size: 0.75em;
  }
  .ClientNotificationDetail__body h6 {
    font-size: 0.6875em;
  }
}.Popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.Popup--visible {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.Popup--hidden {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.Popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}
.Popup__content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 500px;
  max-width: 90%;
  max-height: 80vh;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.Popup__content--success {
  border-top: 4px solid #4caf50;
}
.Popup__content--error {
  border-top: 4px solid #f44336;
}
.Popup__content--warning {
  border-top: 4px solid #ff9800;
}
.Popup__content--info {
  border-top: 4px solid #2196f3;
}
@media screen and (max-width: 480px) {
  .Popup__content {
    width: 95%;
    max-height: 85vh;
  }
}
.Popup__header {
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Popup__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.Popup__close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Popup__close-btn:hover {
  color: #333;
}
.Popup__body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 130px);
}
@media screen and (max-width: 480px) {
  .Popup__body {
    padding: 16px;
    max-height: calc(85vh - 120px);
  }
}
.Popup__message {
  margin: 0 0 16px;
  color: #333;
  line-height: 1.5;
}
.Popup__details {
  margin-top: 16px;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.Popup__details-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}
.Popup__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}
@media screen and (max-width: 480px) {
  .Popup__details-list {
    max-height: 150px;
  }
}
.Popup__details-item {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.Popup__details-item--success {
  background-color: rgba(76, 175, 80, 0.1);
  border-left: 3px solid #4caf50;
}
.Popup__details-item--failed {
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 3px solid #f44336;
}
.Popup__details-filename {
  font-weight: 500;
  margin-right: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 50%;
}
.Popup__details-status {
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 8px;
}
.Popup__details-item--success .Popup__details-status {
  background-color: #4caf50;
  color: white;
}
.Popup__details-item--failed .Popup__details-status {
  background-color: #f44336;
  color: white;
}
.Popup__details-client {
  font-size: 0.9rem;
  color: #666;
  margin-left: auto;
}
.Popup__details-error {
  flex-basis: 100%;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #f44336;
  padding: 4px 8px;
  background-color: rgba(244, 67, 54, 0.05);
  border-radius: 4px;
}
.Popup__footer {
  padding: 12px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: flex-end;
  background-color: #fafafa;
}
.Popup__button {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.Popup__button--primary {
  background-color: #2196f3;
  color: white;
}
.Popup__button--primary:hover {
  background-color: #1976d2;
}
.Popup__button--secondary {
  background-color: #e0e0e0;
  color: #333;
  margin-right: 8px;
}
.Popup__button--secondary:hover {
  background-color: #d5d5d5;
}.FormCommon__form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .FormCommon__form {
    padding: 20px;
  }
}
.FormCommon__section {
  margin-bottom: 30px;
}
.FormCommon__section:last-child {
  margin-bottom: 0;
}
.FormCommon__section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #175e99;
}
.FormCommon__field-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .FormCommon__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.FormCommon__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .FormCommon__field {
    min-width: 100%;
  }
}
.FormCommon__field--full {
  width: 100%;
  flex: none;
}
.FormCommon__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.FormCommon__label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}
.FormCommon__label--checkbox, .InvoiceCreateForm__checkbox-label {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.FormCommon__required {
  color: #dc3545;
  margin-left: 4px;
}
.FormCommon__input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.FormCommon__input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.FormCommon__input--error {
  border-color: #dc3545;
}
.FormCommon__input--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.FormCommon__input--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.FormCommon__select:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.FormCommon__select--error {
  border-color: #dc3545;
}
.FormCommon__select--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.FormCommon__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 100px;
  resize: vertical;
}
.FormCommon__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.FormCommon__textarea--error {
  border-color: #dc3545;
}
.FormCommon__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.FormCommon__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.FormCommon__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.FormCommon__actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .FormCommon__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.FormCommon__button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  min-width: 120px;
}
.FormCommon__button:hover {
  transform: translateY(-1px);
}
.FormCommon__button:active {
  transform: translateY(0);
}
.FormCommon__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.FormCommon__button--primary, .InvoiceCreateForm__button--submit {
  background-color: #175e99;
  color: white;
}
.FormCommon__button--primary:hover:not(:disabled), .InvoiceCreateForm__button--submit:hover:not(:disabled) {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.FormCommon__button--secondary, .InvoiceCreateForm__button--cancel {
  background-color: #6c757d;
  color: white;
}
.FormCommon__button--secondary:hover:not(:disabled), .InvoiceCreateForm__button--cancel:hover:not(:disabled) {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
@media screen and (max-width: 480px) {
  .FormCommon__button {
    width: 100%;
  }
}

.InvoiceCreateForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}
.InvoiceCreateForm__header {
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.InvoiceCreateForm__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.InvoiceCreateForm__content {
  flex: 1;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.InvoiceCreateForm__form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .InvoiceCreateForm__form {
    padding: 20px;
  }
}
.InvoiceCreateForm__section {
  margin-bottom: 30px;
}
.InvoiceCreateForm__section:last-child {
  margin-bottom: 0;
}
.InvoiceCreateForm__section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #175e99;
}
.InvoiceCreateForm__field-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .InvoiceCreateForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.InvoiceCreateForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .InvoiceCreateForm__field {
    min-width: 100%;
  }
}
.InvoiceCreateForm__field--full {
  width: 100%;
  flex: none;
}
.InvoiceCreateForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.InvoiceCreateForm__label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}
.InvoiceCreateForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.InvoiceCreateForm__checkbox-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
  margin-bottom: 0;
}
.InvoiceCreateForm__checkbox-label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.InvoiceCreateForm__input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.InvoiceCreateForm__input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.InvoiceCreateForm__input--error {
  border-color: #dc3545;
}
.InvoiceCreateForm__input--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.InvoiceCreateForm__input--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.InvoiceCreateForm__select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.InvoiceCreateForm__select:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.InvoiceCreateForm__select--error {
  border-color: #dc3545;
}
.InvoiceCreateForm__select--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.InvoiceCreateForm__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.InvoiceCreateForm__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.InvoiceCreateForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.InvoiceCreateForm__file-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.InvoiceCreateForm__file-button {
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}
.InvoiceCreateForm__file-button:hover {
  background-color: #e0e0e0;
}
.InvoiceCreateForm__file-button:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.InvoiceCreateForm__file-name {
  flex: 1;
  font-size: 0.9rem;
  color: #606060;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.InvoiceCreateForm__actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .InvoiceCreateForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.InvoiceCreateForm__button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  min-width: 120px;
}
.InvoiceCreateForm__button:hover {
  transform: translateY(-1px);
}
.InvoiceCreateForm__button:active {
  transform: translateY(0);
}
.InvoiceCreateForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.InvoiceCreateForm__button--primary {
  background-color: #175e99;
  color: white;
}
.InvoiceCreateForm__button--primary:hover:not(:disabled) {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.InvoiceCreateForm__button--secondary {
  background-color: #6c757d;
  color: white;
}
.InvoiceCreateForm__button--secondary:hover:not(:disabled) {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
@media screen and (max-width: 480px) {
  .InvoiceCreateForm__button {
    width: 100%;
  }
}
.InvoiceCreateForm__upload-status {
  background-color: #e8f4ff;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.InvoiceCreateForm__upload-progress {
  width: 100%;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.InvoiceCreateForm__upload-progress-bar {
  height: 100%;
  background-color: #007bff;
  border-radius: 3px;
  transition: width 0.3s;
}
@media screen and (max-width: 480px) {
  .InvoiceCreateForm__content {
    padding: 1rem;
  }
  .InvoiceCreateForm__file-input {
    flex-direction: column;
    align-items: flex-start;
  }
  .InvoiceCreateForm__file-button {
    width: 100%;
  }
}.FormCommon__form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .FormCommon__form {
    padding: 20px;
  }
}
.FormCommon__section {
  margin-bottom: 30px;
}
.FormCommon__section:last-child {
  margin-bottom: 0;
}
.FormCommon__section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #175e99;
}
.FormCommon__field-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .FormCommon__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.FormCommon__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .FormCommon__field {
    min-width: 100%;
  }
}
.FormCommon__field--full {
  width: 100%;
  flex: none;
}
.FormCommon__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.FormCommon__label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}
.FormCommon__label--checkbox, .DeliveryNoteCreateForm__checkbox-label {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.FormCommon__required {
  color: #dc3545;
  margin-left: 4px;
}
.FormCommon__input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.FormCommon__input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.FormCommon__input--error {
  border-color: #dc3545;
}
.FormCommon__input--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.FormCommon__input--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.FormCommon__select:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.FormCommon__select--error {
  border-color: #dc3545;
}
.FormCommon__select--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.FormCommon__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 100px;
  resize: vertical;
}
.FormCommon__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.FormCommon__textarea--error {
  border-color: #dc3545;
}
.FormCommon__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.FormCommon__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.FormCommon__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.FormCommon__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.FormCommon__actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .FormCommon__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.FormCommon__button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  min-width: 120px;
}
.FormCommon__button:hover {
  transform: translateY(-1px);
}
.FormCommon__button:active {
  transform: translateY(0);
}
.FormCommon__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.FormCommon__button--primary, .DeliveryNoteCreateForm__button--submit {
  background-color: #175e99;
  color: white;
}
.FormCommon__button--primary:hover:not(:disabled), .DeliveryNoteCreateForm__button--submit:hover:not(:disabled) {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.FormCommon__button--secondary, .DeliveryNoteCreateForm__button--cancel {
  background-color: #6c757d;
  color: white;
}
.FormCommon__button--secondary:hover:not(:disabled), .DeliveryNoteCreateForm__button--cancel:hover:not(:disabled) {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
@media screen and (max-width: 480px) {
  .FormCommon__button {
    width: 100%;
  }
}

.DeliveryNoteCreateForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}
.DeliveryNoteCreateForm__header {
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.DeliveryNoteCreateForm__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.DeliveryNoteCreateForm__content {
  flex: 1;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.DeliveryNoteCreateForm__form {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteCreateForm__form {
    padding: 20px;
  }
}
.DeliveryNoteCreateForm__section {
  margin-bottom: 30px;
}
.DeliveryNoteCreateForm__section:last-child {
  margin-bottom: 0;
}
.DeliveryNoteCreateForm__section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #175e99;
}
.DeliveryNoteCreateForm__field-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteCreateForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.DeliveryNoteCreateForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteCreateForm__field {
    min-width: 100%;
  }
}
.DeliveryNoteCreateForm__field--full {
  width: 100%;
  flex: none;
}
.DeliveryNoteCreateForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.DeliveryNoteCreateForm__label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}
.DeliveryNoteCreateForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.DeliveryNoteCreateForm__checkbox-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
  margin-bottom: 0;
}
.DeliveryNoteCreateForm__checkbox-label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.DeliveryNoteCreateForm__input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.DeliveryNoteCreateForm__input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.DeliveryNoteCreateForm__input--error {
  border-color: #dc3545;
}
.DeliveryNoteCreateForm__input--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.DeliveryNoteCreateForm__input--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.DeliveryNoteCreateForm__select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.DeliveryNoteCreateForm__select:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.DeliveryNoteCreateForm__select--error {
  border-color: #dc3545;
}
.DeliveryNoteCreateForm__select--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.DeliveryNoteCreateForm__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.DeliveryNoteCreateForm__select--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.DeliveryNoteCreateForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.DeliveryNoteCreateForm__file-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.DeliveryNoteCreateForm__file-button {
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}
.DeliveryNoteCreateForm__file-button:hover {
  background-color: #e0e0e0;
}
.DeliveryNoteCreateForm__file-button:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.DeliveryNoteCreateForm__file-name {
  flex: 1;
  font-size: 0.9rem;
  color: #606060;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.DeliveryNoteCreateForm__help-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.DeliveryNoteCreateForm__actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteCreateForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.DeliveryNoteCreateForm__button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  min-width: 120px;
}
.DeliveryNoteCreateForm__button:hover {
  transform: translateY(-1px);
}
.DeliveryNoteCreateForm__button:active {
  transform: translateY(0);
}
.DeliveryNoteCreateForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.DeliveryNoteCreateForm__button--primary {
  background-color: #175e99;
  color: white;
}
.DeliveryNoteCreateForm__button--primary:hover:not(:disabled) {
  background-color: rgb(16.3352272727, 66.7613636364, 108.6647727273);
}
.DeliveryNoteCreateForm__button--secondary {
  background-color: #6c757d;
  color: white;
}
.DeliveryNoteCreateForm__button--secondary:hover:not(:disabled) {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
@media screen and (max-width: 480px) {
  .DeliveryNoteCreateForm__button {
    width: 100%;
  }
}
.DeliveryNoteCreateForm__upload-status {
  background-color: #e8f4ff;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.DeliveryNoteCreateForm__upload-progress {
  width: 100%;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.DeliveryNoteCreateForm__upload-progress-bar {
  height: 100%;
  background-color: #007bff;
  border-radius: 3px;
  transition: width 0.3s;
}
@media screen and (max-width: 480px) {
  .DeliveryNoteCreateForm__content {
    padding: 1rem;
  }
  .DeliveryNoteCreateForm__file-input {
    flex-direction: column;
    align-items: flex-start;
  }
  .DeliveryNoteCreateForm__file-button {
    width: 100%;
  }
}
.DeliveryNoteCreateForm__help-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}.CommonTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.CommonTable__th {
  font-weight: bold;
  font-size: 14px;
  color: #505050;
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.CommonTable__td {
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
}
.CommonTable__td--actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td .actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.NotificationTable__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.CommonTable__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}
.CommonTable__status-badge--primary {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--success {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--neutral {
  background-color: #505050;
}
.CommonTable__status-badge--pending {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--scheduled {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--sent {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--downloaded {
  background-color: #505050;
}
.CommonTable__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.CommonTable__status-badge--cancelled {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--active {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--inactive {
  background-color: #505050;
}
.CommonTable__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.CommonTable__action-button:hover {
  background-color: #f5f7fa;
}

.CommonPagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 14px;
}
.CommonPagination__select {
  margin-right: 1rem;
}
.CommonPagination__select select {
  width: 70px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 0.5rem;
  font-size: 14px;
  color: #505050;
  background-color: white;
}
.CommonPagination__info {
  margin-right: 1rem;
  font-size: 14px;
  color: #505050;
}
.CommonPagination__buttons {
  display: flex;
  gap: 0.5rem;
}
.CommonPagination__buttons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}
.CommonPagination__buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.MainActionBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 128px;
  height: 46px;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #175e99;
}
.MainActionBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.MainActionBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.MainActionBtn--register {
  background-color: #fd5747;
}
.MainActionBtn--register:hover {
  background-color: rgb(252.4516129032, 40.935483871, 20.5483870968);
}
.MainActionBtn--file-register {
  width: 160px;
  background-color: #e88547;
}
.MainActionBtn--file-register:hover {
  background-color: rgb(224, 103.4782608696, 28);
}
.MainActionBtn--import {
  background-color: #4d4e8d;
}
.MainActionBtn--import:hover {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.MainActionBtn--export {
  background-color: #47e894;
}
.MainActionBtn--export:hover {
  background-color: rgb(28, 224, 121.7391304348);
}
.MainActionBtn--download {
  background-color: #4787e8;
}
.MainActionBtn--download:hover {
  background-color: rgb(28, 105.9130434783, 224);
}
.MainActionBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.MainActionBtn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.MainActionBtn svg,
.MainActionBtn .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.Filter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.Filter__item {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  margin-bottom: 40px;
}
.Filter__item label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6c757d;
}
.Filter__item select,
.Filter__item input {
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  transition: border-color 0.2s;
}
.Filter__item select:focus,
.Filter__item input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.Filter__item select {
  cursor: pointer;
}
.Filter__item select:hover {
  border-color: rgb(198.5, 198.5, 198.5);
}
.Filter__item input::placeholder {
  color: rgb(161.1158798283, 167.8755364807, 173.8841201717);
}
.Filter__clear {
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  margin-left: auto;
  transition: all 0.2s;
  color: #333333;
  margin-bottom: 40px;
}
.Filter__clear:hover {
  background-color: #f5f7fa;
}
.Filter__clear:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(23, 94, 153, 0.2);
}
.Filter__clear:active {
  transform: translateY(1px);
}
.Filter__clear:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Filter__clear:disabled:hover {
  background-color: transparent;
}
@media (max-width: 768px) {
  .Filter {
    flex-direction: column;
    gap: 10px;
  }
  .Filter__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .Filter__item select,
  .Filter__item input {
    width: 100%;
  }
  .Filter__clear {
    margin-left: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}

.ClientList {
  width: 100%;
  max-width: 100%;
  background-color: #f5f7fa;
  min-height: calc(100vh - 64px);
}
.ClientList__content {
  display: flex;
  width: 100%;
  height: 100%;
}
.ClientList__sidebar {
  width: 133px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  flex-shrink: 0;
  border-right: 1px solid #E0E0E0;
  margin-right: 20px;
  padding-right: 20px;
}
.ClientList__sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ClientList__sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
.ClientList__sidebar-item:hover, .ClientList__sidebar-item.active {
  color: #175e99;
}
.ClientList__sidebar-count {
  padding: 2px 8px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}
.ClientList__main {
  flex: 1;
  overflow-x: auto;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
}
.ClientList__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.ClientList__actions {
  display: flex;
  gap: 10px;
}
.ClientList__bulk-actions {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f5f7fa;
  border-radius: 4px;
  margin-bottom: 15px;
}
.ClientList__bulk-actions span {
  font-weight: 500;
  margin-right: 20px;
}
.ClientList__bulk-buttons {
  display: flex;
  gap: 10px;
}
.ClientList__bulk-buttons button {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.ClientList__bulk-buttons button:hover {
  background-color: #f5f7fa;
}
.ClientList__table-container {
  overflow-x: auto;
  background-color: white;
}
.ClientList__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ClientList__table th, .ClientList__table td {
  padding: 12px 15px;
  text-align: left;
}
.ClientList__table th {
  font-weight: 500;
  color: #6c757d;
  border-bottom: 1px solid #e0e0e0;
}
.ClientList__table tr:last-child td {
  border-bottom: none;
}
.ClientList__table tr:hover td {
  background-color: rgba(245, 247, 250, 0.5);
}
.ClientList__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  color: white;
}
.ClientList__status-badge--active {
  background: #8bb7a2;
}
.ClientList__status-badge--inactive {
  background: #4d4e8d;
}
.ClientList__actions-cell {
  display: flex;
  gap: 10px;
}
.ClientList__action-icon {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
  text-decoration: none;
}
.ClientList__action-icon:hover {
  background-color: #f5f7fa;
}
.ClientList__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.ClientList__pagination-button {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}
.ClientList__pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ClientList__pagination-button:not(:disabled):hover {
  background-color: #f5f7fa;
}
.ClientList__pagination-info {
  font-size: 14px;
  color: #6c757d;
}
.ClientList__loading {
  padding: 20px;
  text-align: center;
  color: #6c757d;
}
.ClientList__error {
  padding: 20px;
  text-align: center;
  color: #dc3545;
}
.ClientList__error p {
  margin-bottom: 15px;
}
.ClientList__retry-button {
  background-color: #175e99;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}
.ClientList__no-data {
  text-align: center;
  padding: 20px;
  color: #6c757d;
}
.ClientList__sort-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: pointer;
}
.ClientList__sort-icon img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.ClientList__sort-icon:hover img {
  opacity: 1;
}
.ClientList__sort-icon--active img {
  opacity: 1;
}
.ClientList__sort-direction {
  margin-left: 2px;
  font-size: 10px;
}
@media screen and (max-width: 480px) {
  .ClientList__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ClientList__filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .ClientList__filter {
    width: 100%;
  }
  .ClientList__filter-clear {
    margin-left: 0;
    margin-top: 10px;
  }
  .ClientList__bulk-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ClientList__pagination {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}.BaseForm {
  width: 100%;
  margin: 0 auto;
}
.BaseForm__header {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.BaseForm__title {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.BaseForm__content {
  padding: 20px 0;
}
.BaseForm__form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.BaseForm__notice {
  background-color: #fffde7;
  border-left: 4px solid #fbc02d;
  padding: 12px 15px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.BaseForm__notice p {
  color: #5d4037;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
.BaseForm__section {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.BaseForm__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.BaseForm__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  padding-left: 10px;
  border-left: 4px solid #175e99;
}
.BaseForm__subsection-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 0 12px;
  color: #444;
  padding-left: 8px;
  border-left: 3px solid rgb(32.9971590909, 134.8579545455, 219.5028409091);
}
.BaseForm__field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.BaseForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.BaseForm__field--full {
  flex-basis: 100%;
  width: 100%;
  flex: none;
}
.BaseForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field {
    min-width: 100%;
  }
}
.BaseForm__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}
.BaseForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.BaseForm__required {
  color: #dc3545;
  margin-left: 5px;
}
.BaseForm__help {
  color: #666;
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 5px;
  font-style: italic;
}
.BaseForm__input, .BaseForm__select, .BaseForm__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.BaseForm__input:focus, .BaseForm__select:focus, .BaseForm__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.BaseForm__input--error, .BaseForm__select--error, .BaseForm__textarea--error {
  border-color: #dc3545;
}
.BaseForm__input--error:focus, .BaseForm__select--error:focus, .BaseForm__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.BaseForm__input--readonly, .BaseForm__select--readonly, .BaseForm__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.BaseForm__textarea {
  min-height: 100px;
  resize: vertical;
}
.BaseForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.BaseForm__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.BaseForm__actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .BaseForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.BaseForm__button {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s, border-color 0.3s;
  min-width: 120px;
}
.BaseForm__button:hover {
  transform: translateY(-1px);
}
.BaseForm__button:active {
  transform: translateY(0);
}
.BaseForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.BaseForm__button--primary {
  background-color: #4D4E8D;
  color: white;
}
.BaseForm__button--primary:hover:not(:disabled) {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.BaseForm__button--secondary {
  background-color: #ffffff;
  color: #505050;
  border: 1px solid #505050;
}
.BaseForm__button--secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #404040;
}
.BaseForm__button--danger {
  background-color: #dc3545;
  color: white;
}
.BaseForm__button--danger:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
@media screen and (max-width: 480px) {
  .BaseForm__button {
    width: 100%;
  }
}
.BaseForm__checkbox-container {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}
.BaseForm__permissions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.BaseForm__permissions-row:last-child {
  margin-bottom: 0;
}
.BaseForm__readonly-group {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.BaseForm__inline-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__form {
    padding: 20px;
  }
  .BaseForm__section-title {
    font-size: 1.1rem;
  }
}
.BaseForm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.BaseForm__table th, .BaseForm__table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.BaseForm__table th {
  font-weight: 600;
  color: #444;
  background-color: #f9f9f9;
}
.BaseForm__table tr:last-child td {
  border-bottom: none;
}
.BaseForm__table tr:hover {
  background-color: #f5f5f5;
}
.BaseForm__modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.BaseForm__modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.BaseForm__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.BaseForm__modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.BaseForm__modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}
.BaseForm__modal-close:hover {
  color: #333;
}
.BaseForm__modal-body {
  padding: 20px;
}
.BaseForm__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.BaseForm__loading, .BaseForm__empty {
  padding: 15px;
  text-align: center;
  color: #666;
}
.BaseForm__success {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}
.BaseForm__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.BaseForm__button--small {
  padding: 6px 12px;
  font-size: 0.9rem;
  min-width: auto;
}.ClientCreate {
  padding: 20px;
}
.ClientCreate__header {
  margin-bottom: 24px;
}
.ClientCreate__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.ClientCreate__error {
  background-color: #fdeded;
  border: 1px solid #f5c2c7;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}
.ClientCreate__error p {
  color: #842029;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .ClientCreate {
    padding: 15px;
  }
  .ClientCreate__title {
    font-size: 1.5rem;
  }
}.ClientMemo {
  width: 100%;
  margin-top: 30px;
}
.ClientMemo__section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.ClientMemo__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  padding-left: 10px;
  border-left: 4px solid #175e99;
}
.ClientMemo__description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  padding-left: 10px;
}
.ClientMemo__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  min-height: 150px;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ClientMemo__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.ClientMemo__textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.ClientMemo__textarea::placeholder {
  color: #999;
}
.ClientMemo__save-button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4D4E8D;
  color: white;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  min-width: 120px;
}
.ClientMemo__save-button:hover:not(:disabled) {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
  transform: translateY(-1px);
}
.ClientMemo__save-button:active {
  transform: translateY(0);
}
.ClientMemo__save-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.ClientMemo__success {
  margin-top: 10px;
  padding: 12px 15px;
  background-color: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  font-weight: 500;
}
.ClientMemo__error {
  margin-top: 10px;
  padding: 12px 15px;
  background-color: #ffebee;
  color: #c62828;
  border-radius: 4px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .ClientMemo__section {
    padding: 20px;
  }
  .ClientMemo__title {
    font-size: 1.1rem;
  }
  .ClientMemo__save-button {
    width: 100%;
  }
}.BaseForm {
  width: 100%;
  margin: 0 auto;
}
.BaseForm__header {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.BaseForm__title {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.BaseForm__content {
  padding: 20px 0;
}
.BaseForm__form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.BaseForm__notice {
  background-color: #fffde7;
  border-left: 4px solid #fbc02d;
  padding: 12px 15px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.BaseForm__notice p {
  color: #5d4037;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
.BaseForm__section {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.BaseForm__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.BaseForm__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  padding-left: 10px;
  border-left: 4px solid #175e99;
}
.BaseForm__subsection-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 0 12px;
  color: #444;
  padding-left: 8px;
  border-left: 3px solid rgb(32.9971590909, 134.8579545455, 219.5028409091);
}
.BaseForm__field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.BaseForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.BaseForm__field--full {
  flex-basis: 100%;
  width: 100%;
  flex: none;
}
.BaseForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field {
    min-width: 100%;
  }
}
.BaseForm__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}
.BaseForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.BaseForm__required {
  color: #dc3545;
  margin-left: 5px;
}
.BaseForm__help {
  color: #666;
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 5px;
  font-style: italic;
}
.BaseForm__input, .BaseForm__select, .BaseForm__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.BaseForm__input:focus, .BaseForm__select:focus, .BaseForm__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.BaseForm__input--error, .BaseForm__select--error, .BaseForm__textarea--error {
  border-color: #dc3545;
}
.BaseForm__input--error:focus, .BaseForm__select--error:focus, .BaseForm__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.BaseForm__input--readonly, .BaseForm__select--readonly, .BaseForm__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.BaseForm__textarea {
  min-height: 100px;
  resize: vertical;
}
.BaseForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.BaseForm__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.BaseForm__actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .BaseForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.BaseForm__button {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s, border-color 0.3s;
  min-width: 120px;
}
.BaseForm__button:hover {
  transform: translateY(-1px);
}
.BaseForm__button:active {
  transform: translateY(0);
}
.BaseForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.BaseForm__button--primary {
  background-color: #4D4E8D;
  color: white;
}
.BaseForm__button--primary:hover:not(:disabled) {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.BaseForm__button--secondary {
  background-color: #ffffff;
  color: #505050;
  border: 1px solid #505050;
}
.BaseForm__button--secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #404040;
}
.BaseForm__button--danger {
  background-color: #dc3545;
  color: white;
}
.BaseForm__button--danger:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
@media screen and (max-width: 480px) {
  .BaseForm__button {
    width: 100%;
  }
}
.BaseForm__checkbox-container {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}
.BaseForm__permissions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.BaseForm__permissions-row:last-child {
  margin-bottom: 0;
}
.BaseForm__readonly-group {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.BaseForm__inline-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__form {
    padding: 20px;
  }
  .BaseForm__section-title {
    font-size: 1.1rem;
  }
}
.BaseForm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.BaseForm__table th, .BaseForm__table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.BaseForm__table th {
  font-weight: 600;
  color: #444;
  background-color: #f9f9f9;
}
.BaseForm__table tr:last-child td {
  border-bottom: none;
}
.BaseForm__table tr:hover {
  background-color: #f5f5f5;
}
.BaseForm__modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.BaseForm__modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.BaseForm__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.BaseForm__modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.BaseForm__modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}
.BaseForm__modal-close:hover {
  color: #333;
}
.BaseForm__modal-body {
  padding: 20px;
}
.BaseForm__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.BaseForm__loading, .BaseForm__empty {
  padding: 15px;
  text-align: center;
  color: #666;
}
.BaseForm__success {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}
.BaseForm__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.BaseForm__button--small {
  padding: 6px 12px;
  font-size: 0.9rem;
  min-width: auto;
}.NotificationDestinationList {
  width: 100%;
}
.NotificationDestinationList__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.NotificationDestinationList__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}
.NotificationDestinationList__add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #505050;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  transition: background-color 0.2s;
}
.NotificationDestinationList__add-button:hover {
  background-color: #f5f7fa;
}
.NotificationDestinationList__add-button i {
  font-size: 12px;
}
.NotificationDestinationList__loading {
  text-align: center;
  padding: 20px;
  color: #666;
}
.NotificationDestinationList__empty {
  text-align: center;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.NotificationDestinationList__empty p {
  margin-bottom: 16px;
  color: #666;
}
.NotificationDestinationList__empty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: white;
  border: 1px solid #505050;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  transition: background-color 0.2s;
}
.NotificationDestinationList__empty-button:hover {
  background-color: #f5f7fa;
}
.NotificationDestinationList__form-container {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.NotificationDestinationList__form-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}
.NotificationDestinationList__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.NotificationDestinationList__item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.NotificationDestinationList__item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.NotificationDestinationList__item-content {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
@media screen and (max-width: 480px) {
  .NotificationDestinationList__item-content {
    flex-direction: column;
    gap: 12px;
  }
}
.NotificationDestinationList__item-main {
  flex: 1;
}
.NotificationDestinationList__item-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #333;
}
.NotificationDestinationList__item-position {
  margin-left: 8px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.NotificationDestinationList__item-email {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.NotificationDestinationList__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.NotificationDestinationList__no-badges {
  font-size: 13px;
  color: #999;
  font-style: italic;
}
.NotificationDestinationList__badge {
  display: inline-block;
  padding: 2px 8px;
  background: white;
  border: 1px solid #505050;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #505050;
}
.NotificationDestinationList__badge--blue {
  background: white;
  border: 1px solid #505050;
  color: #505050;
}
.NotificationDestinationList__badge--green {
  background: white;
  border: 1px solid #505050;
  color: #505050;
}
.NotificationDestinationList__badge--orange {
  background: white;
  border: 1px solid #505050;
  color: #505050;
}
.NotificationDestinationList__badge--purple {
  background: #f3e5f5;
  border: 1px solid #9c27b0;
  color: #7b1fa2;
}
.NotificationDestinationList__item-destination-type {
  margin-bottom: 8px;
}
.NotificationDestinationList__item-actions {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.NotificationDestinationList__item-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.NotificationDestinationList__item-button i {
  font-size: 12px;
}
.NotificationDestinationList__item-button--edit {
  background: white;
  border: 1px solid #505050;
  color: #505050;
}
.NotificationDestinationList__item-button--edit:hover {
  background-color: #f5f7fa;
}
.NotificationDestinationList__item-button--delete {
  background: white;
  border: 1px solid #f44336;
  color: #f44336;
}
.NotificationDestinationList__item-button--delete:hover {
  background-color: rgba(244, 67, 54, 0.1);
}
@media screen and (max-width: 480px) {
  .NotificationDestinationList__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .NotificationDestinationList__add-button {
    width: 100%;
    justify-content: center;
  }
  .NotificationDestinationList__item-actions {
    width: 100%;
    justify-content: flex-end;
  }
}.ClientEdit {
  padding: 20px;
}
.ClientEdit__header {
  margin-bottom: 24px;
}
.ClientEdit__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.ClientEdit__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.ClientEdit__loading p {
  color: #666;
}
.ClientEdit__error {
  padding: 20px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  margin-bottom: 24px;
}
.ClientEdit__error p {
  margin-bottom: 16px;
}
.ClientEdit__retry-button {
  padding: 8px 16px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.ClientEdit__retry-button:hover {
  background-color: #c82333;
}
.ClientEdit__notification-destinations {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}
@media screen and (max-width: 480px) {
  .ClientEdit {
    padding: 15px;
  }
  .ClientEdit__title {
    font-size: 1.5rem;
  }
}.CommonSidebar {
  width: 133px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  flex-shrink: 0;
  border-right: 1px solid #E0E0E0;
  margin-right: 20px;
  padding-right: 20px;
}
.CommonSidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.CommonSidebar__item {
  margin-bottom: 20px;
}
.CommonSidebar__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.CommonSidebar__button:hover, .CommonSidebar__button--active {
  color: #175e99;
}
.CommonSidebar__label {
  flex: 1;
}
.CommonSidebar__count {
  padding: 2px 8px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}.NotificationHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.NotificationHeader__title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0;
}
.NotificationHeader__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .NotificationHeader__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.NotificationHeader__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 46px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.NotificationHeader__action i {
  margin-right: 0.5rem;
}
.NotificationHeader__action--primary {
  background-color: #fd5747;
  color: #ffffff;
  border: none;
}
.NotificationHeader__action--primary:hover {
  background-color: rgb(252.4516129032, 40.935483871, 20.5483870968);
}
.NotificationHeader__action--secondary {
  background-color: #4d4e8d;
  color: #ffffff;
  border: none;
}
.NotificationHeader__action--secondary:hover {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}

@media screen and (max-width: 480px) {
  .NotificationHeader {
    flex-direction: column;
    align-items: flex-start;
  }
  .NotificationHeader__title {
    margin-bottom: 1rem;
  }
  .NotificationHeader__actions {
    width: 100%;
    justify-content: space-between;
  }
}.NotificationFilters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.NotificationFilters__search {
  flex: 1;
  margin-right: 1rem;
  min-width: 250px;
}
.NotificationFilters__search-input-container {
  position: relative;
  display: flex;
}
.NotificationFilters__search-input {
  width: 100%;
  padding: 0.6rem 2.5rem 0.6rem 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.NotificationFilters__search-input:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 1px #175e99;
}
.NotificationFilters__search-button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
}
.NotificationFilters__search-button:hover {
  color: #175e99;
}
.NotificationFilters__options {
  display: flex;
  align-items: center;
}
.NotificationFilters__per-page {
  margin-right: 1rem;
}
.NotificationFilters__per-page-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  white-space: nowrap;
}
.NotificationFilters__per-page-select {
  margin-left: 0.5rem;
  padding: 0.4rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.NotificationFilters__per-page-select:focus {
  outline: none;
  border-color: #175e99;
}
.NotificationFilters__clear-button {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border: none;
  background-color: #f3f4f6;
  border-radius: 4px;
  color: #6c757d;
  font-size: 0.9rem;
  cursor: pointer;
}
.NotificationFilters__clear-button i {
  margin-right: 0.5rem;
}
.NotificationFilters__clear-button:hover {
  background-color: #e5e7eb;
}

@media screen and (max-width: 480px) {
  .NotificationFilters {
    flex-direction: column;
    align-items: stretch;
  }
  .NotificationFilters__search {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .NotificationFilters__options {
    justify-content: space-between;
  }
}.NotificationBulkActions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background-color: #F9F9FB;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.NotificationBulkActions__info {
  display: flex;
  align-items: center;
}
.NotificationBulkActions__count {
  font-weight: 600;
  color: #175e99;
  margin-right: 0.5rem;
}
.NotificationBulkActions__text {
  color: #6c757d;
}
.NotificationBulkActions__actions {
  display: flex;
  gap: 0.8rem;
}
.NotificationBulkActions__button {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.NotificationBulkActions__button i {
  margin-right: 0.5rem;
}
.NotificationBulkActions__button--delete {
  background-color: #ffffff;
  color: #dc3545;
  border: 1px solid #dc3545;
}
.NotificationBulkActions__button--delete:hover {
  background-color: #dc3545;
  color: #ffffff;
}

@media screen and (max-width: 480px) {
  .NotificationBulkActions {
    flex-direction: column;
  }
  .NotificationBulkActions__info {
    margin-bottom: 0.8rem;
  }
  .NotificationBulkActions__actions {
    width: 100%;
  }
  .NotificationBulkActions__actions .NotificationBulkActions__button {
    flex: 1;
    justify-content: center;
  }
}.NotificationContent {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.NotificationContent__table-container {
  flex: 1;
  overflow: auto;
  background-color: #ffffff;
}
.NotificationContent__empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
}
.NotificationContent__empty p {
  margin-bottom: 1rem;
  color: #6c757d;
}
.NotificationContent__clear-filters {
  padding: 0.5rem 1rem;
  background-color: #f5f7fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333333;
  cursor: pointer;
}
.NotificationContent__clear-filters:hover {
  background-color: rgb(228, 233.4, 241.5);
}

@media screen and (max-width: 480px) {
  .NotificationContent__table-container {
    overflow-x: auto;
  }
}.CommonTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.CommonTable__th {
  font-weight: bold;
  font-size: 14px;
  color: #505050;
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.CommonTable__td {
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
}
.CommonTable__td--actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td .actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.NotificationTable__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.CommonTable__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}
.CommonTable__status-badge--primary {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--success {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--neutral {
  background-color: #505050;
}
.CommonTable__status-badge--pending {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--scheduled {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--sent {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--downloaded {
  background-color: #505050;
}
.CommonTable__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.CommonTable__status-badge--cancelled {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--active {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--inactive {
  background-color: #505050;
}
.CommonTable__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.CommonTable__action-button:hover {
  background-color: #f5f7fa;
}

.CommonPagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 14px;
}
.CommonPagination__select {
  margin-right: 1rem;
}
.CommonPagination__select select {
  width: 70px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 0.5rem;
  font-size: 14px;
  color: #505050;
  background-color: white;
}
.CommonPagination__info {
  margin-right: 1rem;
  font-size: 14px;
  color: #505050;
}
.CommonPagination__buttons {
  display: flex;
  gap: 0.5rem;
}
.CommonPagination__buttons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}
.CommonPagination__buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.CommonSidebar {
  width: 133px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  flex-shrink: 0;
  border-right: 1px solid #E0E0E0;
  margin-right: 20px;
  padding-right: 20px;
}
.CommonSidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.CommonSidebar__item {
  margin-bottom: 20px;
}
.CommonSidebar__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.CommonSidebar__button:hover, .CommonSidebar__button--active {
  color: #175e99;
}
.CommonSidebar__label {
  flex: 1;
}
.CommonSidebar__count {
  padding: 2px 8px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.NotificationList {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.NotificationList__content {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.NotificationList__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .NotificationList__content {
    flex-direction: column;
  }
}.BaseForm {
  width: 100%;
  margin: 0 auto;
}
.BaseForm__header {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.BaseForm__title {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.BaseForm__content {
  padding: 20px 0;
}
.BaseForm__form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.BaseForm__notice {
  background-color: #fffde7;
  border-left: 4px solid #fbc02d;
  padding: 12px 15px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.BaseForm__notice p {
  color: #5d4037;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
.BaseForm__section {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.BaseForm__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.BaseForm__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  padding-left: 10px;
  border-left: 4px solid #175e99;
}
.BaseForm__subsection-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 0 12px;
  color: #444;
  padding-left: 8px;
  border-left: 3px solid rgb(32.9971590909, 134.8579545455, 219.5028409091);
}
.BaseForm__field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.BaseForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.BaseForm__field--full {
  flex-basis: 100%;
  width: 100%;
  flex: none;
}
.BaseForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field {
    min-width: 100%;
  }
}
.BaseForm__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}
.BaseForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.BaseForm__required {
  color: #dc3545;
  margin-left: 5px;
}
.BaseForm__help {
  color: #666;
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 5px;
  font-style: italic;
}
.BaseForm__input, .BaseForm__select, .BaseForm__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.BaseForm__input:focus, .BaseForm__select:focus, .BaseForm__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.BaseForm__input--error, .BaseForm__select--error, .BaseForm__textarea--error {
  border-color: #dc3545;
}
.BaseForm__input--error:focus, .BaseForm__select--error:focus, .BaseForm__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.BaseForm__input--readonly, .BaseForm__select--readonly, .BaseForm__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.BaseForm__textarea {
  min-height: 100px;
  resize: vertical;
}
.BaseForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.BaseForm__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.BaseForm__actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .BaseForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.BaseForm__button {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s, border-color 0.3s;
  min-width: 120px;
}
.BaseForm__button:hover {
  transform: translateY(-1px);
}
.BaseForm__button:active {
  transform: translateY(0);
}
.BaseForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.BaseForm__button--primary {
  background-color: #4D4E8D;
  color: white;
}
.BaseForm__button--primary:hover:not(:disabled) {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.BaseForm__button--secondary {
  background-color: #ffffff;
  color: #505050;
  border: 1px solid #505050;
}
.BaseForm__button--secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #404040;
}
.BaseForm__button--danger {
  background-color: #dc3545;
  color: white;
}
.BaseForm__button--danger:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
@media screen and (max-width: 480px) {
  .BaseForm__button {
    width: 100%;
  }
}
.BaseForm__checkbox-container {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}
.BaseForm__permissions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.BaseForm__permissions-row:last-child {
  margin-bottom: 0;
}
.BaseForm__readonly-group {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.BaseForm__inline-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__form {
    padding: 20px;
  }
  .BaseForm__section-title {
    font-size: 1.1rem;
  }
}
.BaseForm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.BaseForm__table th, .BaseForm__table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.BaseForm__table th {
  font-weight: 600;
  color: #444;
  background-color: #f9f9f9;
}
.BaseForm__table tr:last-child td {
  border-bottom: none;
}
.BaseForm__table tr:hover {
  background-color: #f5f5f5;
}
.BaseForm__modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.BaseForm__modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.BaseForm__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.BaseForm__modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.BaseForm__modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}
.BaseForm__modal-close:hover {
  color: #333;
}
.BaseForm__modal-body {
  padding: 20px;
}
.BaseForm__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.BaseForm__loading, .BaseForm__empty {
  padding: 15px;
  text-align: center;
  color: #666;
}
.BaseForm__success {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}
.BaseForm__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.BaseForm__button--small {
  padding: 6px 12px;
  font-size: 0.9rem;
  min-width: auto;
}

.BaseForm__file-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
}
.BaseForm__file-input:focus {
  outline: none;
  border-color: #175e99;
}
.BaseForm__image-preview {
  margin-top: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
}
.BaseForm__preview-img {
  width: 100%;
  height: auto;
  display: block;
}.NotificationEdit {
  width: 100%;
  max-width: 100%;
}
.NotificationEdit__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.NotificationEdit__progress {
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e0e0e0;
}
.NotificationEdit__progress-text {
  margin-bottom: 10px;
  font-size: 14px;
  color: #6c757d;
}
.NotificationEdit__progress-bar {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}
.NotificationEdit__progress-bar-fill {
  height: 100%;
  background-color: #175e99;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.NotificationEdit__title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}
.NotificationEdit__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin: 20px 0 10px;
}
.NotificationEdit__loading {
  padding: 40px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  color: #6c757d;
}
.NotificationEdit__error {
  padding: 20px;
  background-color: rgba(220, 53, 69, 0.1);
  border-radius: 8px;
  color: #dc3545;
  margin-bottom: 20px;
}
.NotificationEdit__error p {
  margin-top: 0;
  margin-bottom: 15px;
}
.NotificationEdit__retry-button {
  background-color: #ffffff;
  border: 1px solid #dc3545;
  color: #dc3545;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.NotificationEdit__retry-button:hover {
  background-color: rgba(220, 53, 69, 0.1);
}
.NotificationEdit__current-image {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.NotificationEdit__image-container {
  margin: 10px 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px;
  background-color: #f0f2f5;
  text-align: center;
}
.NotificationEdit__image {
  max-width: 100%;
  max-height: 300px;
}
.NotificationEdit__image-note {
  font-size: 14px;
  color: #6c757d;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .NotificationEdit__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}.CommonTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.CommonTable__th {
  font-weight: bold;
  font-size: 14px;
  color: #505050;
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.CommonTable__td {
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
}
.CommonTable__td--actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td .actions {
  display: flex;
  gap: 0.5rem;
}
.CommonTable__td.NotificationTable__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.CommonTable__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  text-align: center;
}
.CommonTable__status-badge--primary {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--success {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--neutral {
  background-color: #505050;
}
.CommonTable__status-badge--pending {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--scheduled {
  background-color: #4D4E8D;
}
.CommonTable__status-badge--sent {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--downloaded {
  background-color: #505050;
}
.CommonTable__status-badge--confirmed {
  background: #3498db;
  color: white;
}
.CommonTable__status-badge--cancelled {
  background-color: #505050;
  color: white;
}
.CommonTable__status-badge--active {
  background-color: #8BB7A2;
}
.CommonTable__status-badge--inactive {
  background-color: #505050;
}
.CommonTable__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.CommonTable__action-button:hover {
  background-color: #f5f7fa;
}

.CommonPagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 14px;
}
.CommonPagination__select {
  margin-right: 1rem;
}
.CommonPagination__select select {
  width: 70px;
  height: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 0.5rem;
  font-size: 14px;
  color: #505050;
  background-color: white;
}
.CommonPagination__info {
  margin-right: 1rem;
  font-size: 14px;
  color: #505050;
}
.CommonPagination__buttons {
  display: flex;
  gap: 0.5rem;
}
.CommonPagination__buttons button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}
.CommonPagination__buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.CommonSidebar {
  width: 133px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  flex-shrink: 0;
  border-right: 1px solid #E0E0E0;
  margin-right: 20px;
  padding-right: 20px;
}
.CommonSidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.CommonSidebar__item {
  margin-bottom: 20px;
}
.CommonSidebar__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.CommonSidebar__button:hover, .CommonSidebar__button--active {
  color: #175e99;
}
.CommonSidebar__label {
  flex: 1;
}
.CommonSidebar__count {
  padding: 2px 8px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.EmailTemplateList {
  width: 100%;
}
.EmailTemplateList__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.EmailTemplateList__title {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.EmailTemplateList__add-button {
  width: 128px;
  height: 46px;
  border-radius: 9px;
  background-color: #fd5747;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.EmailTemplateList__add-button:hover {
  background-color: rgb(252.4516129032, 40.935483871, 20.5483870968);
}
.EmailTemplateList__add-button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}
.EmailTemplateList__content {
  display: flex;
}
.EmailTemplateList__filters {
  display: flex;
  margin-bottom: 20px;
}
.EmailTemplateList__filter-button {
  padding: 8px 16px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  margin-right: 10px;
  border-radius: 4px;
  cursor: pointer;
}
.EmailTemplateList__filter-button:hover {
  background-color: #e2e6ea;
}
.EmailTemplateList__filter-button.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.EmailTemplateList__loading {
  text-align: center;
  padding: 40px;
  color: #666;
  font-style: italic;
}
.EmailTemplateList__empty {
  text-align: center;
  padding: 40px;
  color: #666;
  border: 1px dashed #ccc;
  border-radius: 4px;
}
.EmailTemplateList__table-container {
  overflow-x: auto;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
}
.EmailTemplateList__table {
  width: 100%;
  border-collapse: collapse;
}
.EmailTemplateList__table th, .EmailTemplateList__table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}
.EmailTemplateList__table th {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #505050;
}
.EmailTemplateList__table tr:hover {
  background-color: #f8f9fa;
}
.EmailTemplateList__table tr.default {
  background-color: #fff3cd;
}
.EmailTemplateList__table tr.default:hover {
  background-color: #ffe8a1;
}
.EmailTemplateList__table tr.active {
  background-color: #e8f5e9;
}
.EmailTemplateList__table tr.active:hover {
  background-color: #c8e6c9;
}
.EmailTemplateList__table td.subject {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.EmailTemplateList__table td.actions {
  display: flex;
  gap: 8px;
}
.EmailTemplateList__edit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.EmailTemplateList__edit-button:hover {
  background-color: #f5f7fa;
}
.EmailTemplateList__active-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.EmailTemplateList__active-button:hover {
  background-color: #f5f7fa;
}
.EmailTemplateList__active-button--active {
  color: #f44336;
  border-color: #f44336;
}
.EmailTemplateList__active-button--active:hover {
  background-color: rgba(244, 67, 54, 0.1);
}
.EmailTemplateList__delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 30px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #505050;
  cursor: pointer;
  text-decoration: none;
}
.EmailTemplateList__delete-button:hover {
  background-color: #f5f7fa;
}.BaseForm {
  width: 100%;
  margin: 0 auto;
}
.BaseForm__header {
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.BaseForm__title {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.BaseForm__content {
  padding: 20px 0;
}
.BaseForm__form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.BaseForm__notice {
  background-color: #fffde7;
  border-left: 4px solid #fbc02d;
  padding: 12px 15px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.BaseForm__notice p {
  color: #5d4037;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
.BaseForm__section {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.BaseForm__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.BaseForm__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  padding-left: 10px;
  border-left: 4px solid #175e99;
}
.BaseForm__subsection-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 0 12px;
  color: #444;
  padding-left: 8px;
  border-left: 3px solid rgb(32.9971590909, 134.8579545455, 219.5028409091);
}
.BaseForm__field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field-group {
    flex-direction: column;
    gap: 0;
  }
}
.BaseForm__field {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.BaseForm__field--full {
  flex-basis: 100%;
  width: 100%;
  flex: none;
}
.BaseForm__field--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__field {
    min-width: 100%;
  }
}
.BaseForm__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}
.BaseForm__label--checkbox {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.BaseForm__required {
  color: #dc3545;
  margin-left: 5px;
}
.BaseForm__help {
  color: #666;
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 5px;
  font-style: italic;
}
.BaseForm__input, .BaseForm__select, .BaseForm__textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.BaseForm__input:focus, .BaseForm__select:focus, .BaseForm__textarea:focus {
  outline: none;
  border-color: #175e99;
  box-shadow: 0 0 0 3px rgba(23, 94, 153, 0.1);
}
.BaseForm__input--error, .BaseForm__select--error, .BaseForm__textarea--error {
  border-color: #dc3545;
}
.BaseForm__input--error:focus, .BaseForm__select--error:focus, .BaseForm__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.BaseForm__input--readonly, .BaseForm__select--readonly, .BaseForm__textarea--readonly {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.BaseForm__textarea {
  min-height: 100px;
  resize: vertical;
}
.BaseForm__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.BaseForm__error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.BaseForm__actions {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 480px) {
  .BaseForm__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.BaseForm__button {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s, border-color 0.3s;
  min-width: 120px;
}
.BaseForm__button:hover {
  transform: translateY(-1px);
}
.BaseForm__button:active {
  transform: translateY(0);
}
.BaseForm__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.BaseForm__button--primary {
  background-color: #4D4E8D;
  color: white;
}
.BaseForm__button--primary:hover:not(:disabled) {
  background-color: rgb(58.9862385321, 59.752293578, 108.0137614679);
}
.BaseForm__button--secondary {
  background-color: #ffffff;
  color: #505050;
  border: 1px solid #505050;
}
.BaseForm__button--secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #404040;
}
.BaseForm__button--danger {
  background-color: #dc3545;
  color: white;
}
.BaseForm__button--danger:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
@media screen and (max-width: 480px) {
  .BaseForm__button {
    width: 100%;
  }
}
.BaseForm__checkbox-container {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}
.BaseForm__permissions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.BaseForm__permissions-row:last-child {
  margin-bottom: 0;
}
.BaseForm__readonly-group {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.BaseForm__inline-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .BaseForm__form {
    padding: 20px;
  }
  .BaseForm__section-title {
    font-size: 1.1rem;
  }
}
.BaseForm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.BaseForm__table th, .BaseForm__table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.BaseForm__table th {
  font-weight: 600;
  color: #444;
  background-color: #f9f9f9;
}
.BaseForm__table tr:last-child td {
  border-bottom: none;
}
.BaseForm__table tr:hover {
  background-color: #f5f5f5;
}
.BaseForm__modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.BaseForm__modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.BaseForm__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.BaseForm__modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.BaseForm__modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}
.BaseForm__modal-close:hover {
  color: #333;
}
.BaseForm__modal-body {
  padding: 20px;
}
.BaseForm__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.BaseForm__loading, .BaseForm__empty {
  padding: 15px;
  text-align: center;
  color: #666;
}
.BaseForm__success {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}
.BaseForm__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.BaseForm__button--small {
  padding: 6px 12px;
  font-size: 0.9rem;
  min-width: auto;
}

.VariableInsertModal__content {
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.VariableInsertModal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.VariableInsertModal__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.VariableInsertModal__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.VariableInsertModal__close:hover {
  color: #333;
}
.VariableInsertModal__message {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}
.VariableInsertModal__variable-list {
  margin-bottom: 20px;
}
.VariableInsertModal__variable-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}
.VariableInsertModal__variable-item:hover {
  background-color: #e9ecef;
}
.VariableInsertModal__variable-info {
  flex: 1;
}
.VariableInsertModal__variable-name {
  font-weight: 500;
  color: #333;
  font-family: monospace;
  font-size: 14px;
}
.VariableInsertModal__variable-description {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}
.VariableInsertModal__insert-button {
  padding: 6px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}
.VariableInsertModal__insert-button:hover {
  background-color: #0056b3;
}
.VariableInsertModal__insert-button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}
.VariableInsertModal__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.VariableInsertModal__button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.VariableInsertModal__button--close {
  background-color: #6c757d;
  color: white;
}
.VariableInsertModal__button--close:hover {
  background-color: #5a6268;
}.UploadErrorList {
  padding: 20px;
}
.UploadErrorList__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.UploadErrorList__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.UploadErrorList__header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.UploadErrorList__count {
  font-size: 14px;
  color: #666;
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-radius: 4px;
}
.UploadErrorList__error {
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}
.UploadErrorList__error p {
  margin: 0;
  color: #c33;
}
.UploadErrorList__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.UploadErrorList__loading {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}
.UploadErrorList__filters {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.UploadErrorList__filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: end;
}
.UploadErrorList__filters-row:not(:last-child) {
  margin-bottom: 15px;
}
.UploadErrorList__filter-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}
.UploadErrorList__filter-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-bottom: 5px;
}
.UploadErrorList__filter-input, .UploadErrorList__filter-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}
.UploadErrorList__filter-input:focus, .UploadErrorList__filter-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.UploadErrorList__toggle-button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.UploadErrorList__toggle-button:hover {
  background-color: #f8f9fa;
}
.UploadErrorList__toggle-button--active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.UploadErrorList__toggle-button--active:hover {
  background-color: #0056b3;
}
.UploadErrorList__clear-button {
  padding: 8px 16px;
  border: 1px solid #6c757d;
  border-radius: 4px;
  background-color: white;
  color: #6c757d;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.UploadErrorList__clear-button:hover {
  background-color: #6c757d;
  color: white;
}
.UploadErrorList__bulk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e3f2fd;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid #bbdefb;
}
.UploadErrorList__bulk-count {
  font-weight: 500;
  color: #1976d2;
}
.UploadErrorList__bulk-buttons {
  display: flex;
  gap: 10px;
}
.UploadErrorList__bulk-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.UploadErrorList__bulk-button--delete {
  background-color: #dc3545;
  color: white;
}
.UploadErrorList__bulk-button--delete:hover {
  background-color: #c82333;
}
.UploadErrorList__table-container {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.UploadErrorList__table {
  width: 100%;
}
.UploadErrorList__actions-cell {
  display: flex;
  gap: 8px;
}
.UploadErrorList__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.UploadErrorList__pagination-info {
  font-size: 14px;
  color: #666;
}
.UploadErrorList__pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.UploadErrorList__pagination-button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.UploadErrorList__pagination-button:hover:not(:disabled) {
  background-color: #f8f9fa;
}
.UploadErrorList__pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.UploadErrorList__pagination-numbers {
  display: flex;
  gap: 5px;
}
.UploadErrorList__pagination-number {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  min-width: 40px;
  text-align: center;
  transition: all 0.2s;
}
.UploadErrorList__pagination-number:hover:not(:disabled) {
  background-color: #f8f9fa;
}
.UploadErrorList__pagination-number--active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.UploadErrorList__pagination-number:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.UploadErrorList__pagination-dots {
  padding: 8px 12px;
  color: #666;
  font-size: 14px;
}

.CommonTable__status-badge--invoice {
  background-color: #e3f2fd;
  color: #1976d2;
}
.CommonTable__status-badge--delivery_note {
  background-color: #f3e5f5;
  color: #7b1fa2;
}
.CommonTable__action-button--restore {
  background-color: #28a745;
  color: white;
}
.CommonTable__action-button--restore:hover {
  background-color: #218838;
}
.CommonTable__action-button--delete {
  background-color: #dc3545;
  color: white;
}
.CommonTable__action-button--delete:hover {
  background-color: #c82333;
}
.CommonTable__td--no-data {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .UploadErrorList {
    padding: 15px;
  }
  .UploadErrorList__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .UploadErrorList__filters-row {
    flex-direction: column;
    align-items: stretch;
  }
  .UploadErrorList__filter-group {
    min-width: auto;
  }
  .UploadErrorList__bulk-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .UploadErrorList__pagination {
    flex-direction: column;
    gap: 15px;
  }
  .UploadErrorList__pagination-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}.App {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #333333;
  background-color: #f5f7fa;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #175e99;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

input, select, textarea, button {
  font-family: inherit;
}

img, svg {
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

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

.text-right {
  text-align: right;
}

.text-muted {
  color: #6c757d;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}