/*!************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/index.css ***!
  \************************************************************************/
/* NEKONOTEアプリケーションのグローバルスタイル */

/* リセットスタイル */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
  line-height: 1.5;
  background-color: #f9f9f9;
}

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

a {
  color: #0074d9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* WordPressダッシュボード内での表示用調整 */
.wrap #nekonote-dashboard-app,
.wrap #nekonote-shift-calendar-app,
.wrap #nekonote-shift-requests-app,
.wrap #nekonote-reports-app,
.wrap #nekonote-settings-app {
  margin: 20px 0;
}

/* Reactアプリケーション全体のコンテナ */
#nekonote-dashboard-app,
#nekonote-shift-calendar-app,
#nekonote-shift-requests-app,
#nekonote-reports-app,
#nekonote-settings-app,
#nekonote-frontend-app {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* フロントエンド表示時のスタイル調整 */
.nekonote-frontend {
  padding: 20px 0;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

/* ローディングスピナー */
.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 116, 217, 0.2);
  border-radius: 50%;
  border-top-color: #0074d9;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ユーティリティクラス */
.text-center {
  text-align: center;
}

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

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.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: 3rem;
}

/* ツールチップ */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* バッジ */
.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 12px;
  background-color: #e0e0e0;
}

.badge-primary {
  background-color: #0074d9;
  color: white;
}

.badge-success {
  background-color: #2ecc40;
  color: white;
}

.badge-warning {
  background-color: #ffdc00;
  color: #333;
}

.badge-danger {
  background-color: #ff4136;
  color: white;
}

/* アラート */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-info {
  background-color: #e3f2fd;
  border: 1px solid #bbdefb;
  color: #0277bd;
}

.alert-success {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
}

.alert-warning {
  background-color: #fff8e1;
  border: 1px solid #ffecb3;
  color: #f57f17;
}

.alert-danger {
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
}

/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/global.css ***!
  \*************************************************************************/
/* global.css - アプリケーション全体に適用されるスタイル */

/* 基本リセットとフォント設定 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #f8f9fa;
}

/* アプリ全体のレイアウト */
.nekonote-app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* 左サイドバーがヘッダーに隠れないように修正 */
.app-header {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000; /* サイドバーより高い値に設定 */
}

.header-left {
  display: flex;
  align-items: center;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  margin-right: 20px;
  padding: 0;
  width: 30px;
}

.menu-toggle span {
  background-color: #333;
  border-radius: 3px;
  display: block;
  height: 3px;
  width: 100%;
}

.app-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-notifications {
  margin-right: 20px;
  position: relative;
}

.notifications-button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.icon-bell {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path fill=\"currentColor\" d=\"M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z\"/></svg>") center center no-repeat;
}

.notification-badge {
  background-color: #f44336;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: bold;
  height: 16px;
  line-height: 16px;
  position: absolute;
  right: -6px;
  text-align: center;
  top: -6px;
  width: 16px;
}

.user-profile {
  position: relative;
}

.user-profile-button {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}

.avatar {
  border-radius: 50%;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
  width: 36px;
}

.avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.avatar-placeholder {
  align-items: center;
  background-color: #007bff;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.user-name {
  font-weight: 500;
  margin-right: 5px;
}

.dropdown-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  margin-left: 5px;
}

.user-menu {
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 45px;
  width: 200px;
  z-index: 1000;
}

.user-menu ul {
  list-style: none;
}

.user-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.user-menu li:last-child {
  border-bottom: none;
}

.user-menu li.divider {
  border-bottom: 1px solid #e9ecef;
  margin: 5px 0;
}

.user-menu a {
  color: #333;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}

.user-menu a:hover {
  background-color: #f8f9fa;
}

/* サイドバー */



.app-sidebar {
  background-color: #343a40;
  color: #adb5bd;
  height: calc(100vh - 60px); /* ヘッダーの高さを考慮 */
  position: fixed;
  top: 60px; /* ヘッダーの高さと同じ値に設定 */
  transition: width 0.3s;
  width: 250px;
  z-index: 900; /* ヘッダーより低く、コンテンツより高い値に設定 */
}

.app-sidebar.collapsed {
  width: 60px;
}

.sidebar-header {
  align-items: center;
  border-bottom: 1px solid #495057;
  display: flex;
  height: 60px;
  justify-content: center;
  padding: 0 15px;
}

.app-logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.app-sidebar.collapsed .logo-text {
  display: none;
}

.sidebar-nav {
  overflow-y: auto;
  padding: 15px 0;
}

.nav-menu {
  list-style: none;
}

.nav-item {
  margin-bottom: 5px;
}

.nav-link {
  align-items: center;
  background: none;
  border: none;
  color: #adb5bd;
  cursor: pointer;
  display: flex;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.2s;
  width: 100%;
}

.nav-link:hover {
  background-color: #495057;
  color: #fff;
}

.nav-item.active .nav-link {
  background-color: #007bff;
  color: #fff;
}

.nav-link i {
  font-size: 18px;
  margin-right: 15px;
  min-width: 24px;
  text-align: center;
}

.app-sidebar.collapsed .nav-text {
  display: none;
}

.sidebar-footer {
  border-top: 1px solid #495057;
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

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

.user-avatar {
  border-radius: 50%;
  height: 30px;
  margin-right: 10px;
  overflow: hidden;
  width: 30px;
}

.app-sidebar.collapsed .user-details {
  display: none;
}

.user-name {
  color: white;
  font-weight: 500;
}

.user-role {
  color: #adb5bd;
  font-size: 12px;
}

/* メインコンテンツエリア */
.app-container {
  display: flex;
  flex: 1;
}


.main-content {
  flex: 1;
  margin-left: 250px; /* サイドバーの幅と同じ */
  padding: 20px;
  transition: margin-left 0.3s;
}

.main-content.sidebar-collapsed {
  margin-left: 60px;
}

.content-wrapper {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 20px;
}

/* フッター */
.app-footer {
  background-color: #fff;
  border-top: 1px solid #e9ecef;
  margin-top: 20px;
  padding: 15px 20px;
}

.footer-content {
  color: #6c757d;
  font-size: 12px;
  text-align: center;
}

/* ローディング表示 */
.app-loading {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  width: 100%;
}

/* ユーティリティクラス */
.text-primary { color: #007bff; }
.text-success { color: #28a745; }
.text-danger { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-info { color: #17a2b8; }

.bg-primary { background-color: #007bff; }
.bg-success { background-color: #28a745; }
.bg-danger { background-color: #dc3545; }
.bg-warning { background-color: #ffc107; }
.bg-info { background-color: #17a2b8; }

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .app-sidebar {
    left: -250px;
  }
  
  .app-sidebar.open {
    left: 0;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .main-content.sidebar-collapsed {
    margin-left: 0;
  }
}

/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/ShiftCalendar.css ***!
  \********************************************************************************/
/* ShiftCalendar.css - 改良版 */
.shifts-page {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.shifts-page h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #333;
}

.shifts-page p {
  color: #666;
  margin-bottom: 20px;
}

/* Shift controls section */
.shift-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
}

.view-modes {
  display: flex;
  gap: 5px;
}

.view-modes button {
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.view-modes button.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.print-preview-btn {
  margin-left: 10px;
  background-color: #f8f9fa !important;
  color: #495057 !important;
}

.date-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-selector button {
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}

.date-range {
  font-weight: bold;
  min-width: 120px;
  text-align: center;
}

.display-settings {
  margin-left: 20px;
}

.display-settings summary {
  cursor: pointer;
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.settings-options {
  position: absolute;
  padding: 15px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.settings-options label {
  display: block;
  margin-bottom: 8px;
}

/* Calendar layout */
.shift-calendar {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow-x: auto;
}

.calendar-header {
  display: flex;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}

.staff-column-header {
  min-width: 150px;
  max-width: 150px;
  padding: 10px;
  font-weight: bold;
  border-right: 1px solid #ddd;
  position: sticky;
  left: 0;
  background-color: #f8f9fa;
  z-index: 20;
}

.dates-header {
  display: flex;
  flex-grow: 1;
}

.date-header {
  min-width: 80px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid #ddd;
}

/* Staff and shift rows */
.calendar-body {
  display: flex;
  flex-direction: column;
}

.staff-category {
  border-bottom: 1px solid #ddd;
}

.category-header {
  background-color: #f0f0f0;
  padding: 8px 10px;
  font-weight: bold;
  position: sticky;
  left: 0;
  min-width: 150px;
  max-width: 150px;
  z-index: 15;
}

.category-header h3 {
  margin: 0;
  font-size: 16px;
}

.staff-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.staff-info {
  min-width: 150px;
  max-width: 150px;
  padding: 10px;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 15;
}

.staff-name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.staff-shifts {
  display: flex;
  flex-grow: 1;
}

.date-cell {
  min-width: 80px;
  height: 80px;
  padding: 5px;
  border-right: 1px solid #ddd;
  position: relative;
}

/* 改良: シフトブロックのスタイル */
.shift-block {
  padding: 4px;
  border-radius: 3px;
  margin-bottom: 2px;
  color: white;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shift-block:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.shift-block.confirmed {
  background-color: #36A2EB;
}

.shift-block.requested {
  background-color: #FFCE56;
}

.shift-time {
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.shift-store {
  font-size: 10px;
  text-align: center;
  margin-top: 2px;
}

/* 追加: シフト追加のプレースホルダー */
.add-shift-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #ccc;
  border-radius: 3px;
  height: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-shift-placeholder:hover {
  background-color: #f5f5f5;
}

.add-icon {
  font-size: 20px;
  color: #aaa;
}

/* Action buttons */
.shift-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.shift-actions button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f9fa;
  cursor: pointer;
}

.create-shift-btn {
  background-color: #007bff !important;
  color: white !important;
  border-color: #007bff !important;
}

.share-shifts-btn {
  background-color: #6c757d !important;
  color: white !important;
  border-color: #6c757d !important;
}

/* モーダルスタイル */
.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;
}

.modal-content {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}

.modal-header {
  background-color: #f8f9fa;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.modal-content form {
  padding: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.delete-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.save-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .shift-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .date-selector {
    width: 100%;
    justify-content: space-between;
  }
  
  .modal-content {
    max-width: 95%;
  }
}

/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/StoresPage.css ***!
  \*****************************************************************************/
/* StoresPage.css */
.stores-page {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.stores-page h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #333;
}

.stores-page p {
  color: #666;
  margin-bottom: 20px;
}

/* アクションバー */
.action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.search-box input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 300px;
  font-size: 14px;
}

.add-store-btn {
  padding: 8px 16px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-store-btn:hover {
  background-color: #218838;
}

/* 店舗リスト */
.stores-list {
  overflow-x: auto;
}

.stores-table {
  width: 100%;
  border-collapse: collapse;
}

.stores-table th,
.stores-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.stores-table th {
  background-color: #f8f9fa;
  position: sticky;
  top: 0;
  font-weight: bold;
}

.stores-table tr:hover {
  background-color: #f5f5f5;
}

.no-results {
  text-align: center;
  padding: 20px;
  color: #666;
}

/* ステータスバッジ */
.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.status-badge.active {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-badge.inactive {
  background-color: #ffebee;
  color: #c62828;
}

/* アクションボタン */
.action-buttons {
  display: flex;
  gap: 8px;
}

.edit-btn,
.delete-btn {
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.edit-btn {
  background-color: #007bff;
  color: white;
}

.delete-btn {
  background-color: #dc3545;
  color: white;
}

/* モーダルスタイル */
.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;
}

.modal-content {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.modal-header {
  background-color: #f8f9fa;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.modal-content form {
  padding: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
}

.required {
  color: #dc3545;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.save-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .search-box input {
    min-width: auto;
    width: 100%;
  }
  
  .add-store-btn {
    width: 100%;
  }
  
  .modal-content {
    max-width: 95%;
  }
}

/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/StaffPage.css ***!
  \****************************************************************************/
/* StaffPage.css */
.staff-page {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.staff-page h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #333;
}

.staff-page p {
  color: #666;
  margin-bottom: 20px;
}

/* フィルターコンテナ */
.filters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.search-box input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 250px;
  font-size: 14px;
}

.filter-selects {
  display: flex;
  gap: 15px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  font-weight: 500;
}

.filter-group select {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 120px;
}

.add-staff-btn {
  padding: 8px 16px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-staff-btn:hover {
  background-color: #218838;
}

/* スタッフリスト */
.staff-list {
  overflow-x: auto;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
}

.staff-table th,
.staff-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.staff-table th {
  background-color: #f8f9fa;
  position: sticky;
  top: 0;
  font-weight: bold;
}

.staff-table tr:hover {
  background-color: #f5f5f5;
}

.no-results {
  text-align: center;
  padding: 20px;
  color: #666;
}

/* スキルバッジ */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.skill-badge {
  display: inline-block;
  padding: 2px 6px;
  background-color: #e9ecef;
  border-radius: 4px;
  font-size: 12px;
}

/* ステータスバッジ */
.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.status-badge.active {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-badge.inactive {
  background-color: #ffebee;
  color: #c62828;
}

/* アクションボタン */
.action-buttons {
  display: flex;
  gap: 8px;
}

.edit-btn,
.delete-btn {
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.edit-btn {
  background-color: #007bff;
  color: white;
}

.delete-btn {
  background-color: #dc3545;
  color: white;
}

/* モーダルスタイル */
.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;
}

.modal-content {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  background-color: #f8f9fa;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.modal-content form {
  padding: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
}

.required {
  color: #dc3545;
}

/* スキル入力 */
.skills-input-container {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.skills-input-container input {
  flex: 1;
}

.add-skill-btn {
  padding: 8px 12px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.skill-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #e9ecef;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.remove-skill-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #6c757d;
  line-height: 1;
  padding: 0;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.save-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .filters-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-selects {
    flex-direction: column;
  }
  
  .search-box input {
    min-width: auto;
    width: 100%;
  }
  
  .add-staff-btn {
    width: 100%;
  }
  
  .modal-content {
    max-width: 95%;
  }
}

/*!**********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/App.css ***!
  \**********************************************************************/
/* NEKONOTEアプリ全体のスタイル */
.nekonote-app {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.app-header {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.app-header h1 {
  font-size: 24px;
  margin: 0;
  color: #0074d9;
}

.header-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.store-selector {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.store-selector label {
  margin-right: 8px;
  font-weight: bold;
}

.store-selector select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  min-width: 200px;
}

.view-mode-selector {
  display: flex;
}

.view-mode-selector button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  cursor: pointer;
  font-size: 14px;
}

.view-mode-selector button:first-child {
  border-radius: 4px 0 0 4px;
}

.view-mode-selector button:last-child {
  border-radius: 0 4px 4px 0;
}

.view-mode-selector button.active {
  background-color: #0074d9;
  color: white;
  border-color: #0074d9;
}

/* メインコンテンツ */
.app-content {
  min-height: calc(100vh - 180px);
  position: relative;
}

.no-store-selected {
  text-align: center;
  padding: 100px 0;
  color: #666;
  font-size: 18px;
}

/* 新規シフト作成ボタン */
.action-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.create-shift-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0074d9;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.create-shift-button:hover {
  background-color: #0062b3;
  transform: scale(1.05);
}

/* フッター */
.app-footer {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* ローディング表示 */
.loading {
  text-align: center;
  padding: 60px;
  font-size: 16px;
  color: #666;
}

/* エラー表示 */
.error {
  text-align: center;
  padding: 20px;
  color: #d32f2f;
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 4px;
  margin: 20px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .app-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .app-header h1 {
    margin-bottom: 15px;
  }
  
  .header-controls {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .store-selector {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .store-selector select {
    width: 100%;
  }
  
  .view-mode-selector {
    width: 100%;
  }
  
  .view-mode-selector button {
    flex: 1;
    text-align: center;
  }
}

/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/RightSidebar.css ***!
  \*******************************************************************************/
/* RightSidebar.css */
.right-sidebar {
  background-color: #fff;
  border-left: 1px solid #ddd;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  height: 100vh;
  max-width: 300px;
  min-width: 250px;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
  width: 25%;
  z-index: 990;
  display: flex;
  flex-direction: column;
}

.right-sidebar.closed {
  transform: translateX(100%);
}

.right-sidebar.open {
  transform: translateX(0);
}

.right-sidebar-header {
  align-items: center;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.right-sidebar-header h3 {
  margin: 0;
  font-size: 18px;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.right-sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.sidebar-section {
  margin-bottom: 20px;
}

.sidebar-section h4 {
  border-bottom: 1px solid #eee;
  font-size: 16px;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.action-btn {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
  padding: 8px 12px;
  text-align: left;
  transition: background-color 0.2s;
  width: 100%;
}

.action-btn:hover {
  background-color: #e9ecef;
}

.filter-option {
  margin-bottom: 8px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.stat-label {
  color: #666;
}

.stat-value {
  font-weight: bold;
}

/* トグルボタン */
.toggle-right-sidebar {
  background-color: #007bff;
  border: none;
  border-radius: 50% 0 0 50%;
  color: white;
  cursor: pointer;
  height: 40px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  z-index: 989;
}

.toggle-right-sidebar:hover {
  background-color: #0069d9;
}


/*# sourceMappingURL=main.css.map*/