.navbar {
  background: #ffffff !important;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 100 !important;
} 

.navbar-brand {
  font-weight: bold;
  color: #ffffff;
}

.nav-link {
  color: #ffffff;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link:focus {
  color: #cfd8dc;
}

.navbar-toggler {
  border-color: #ffffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.stylish-sidebar {
  background: #3173A0 !important;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  padding: 10px;
  width: 200px;
  min-height: 100vh;
}

.nav-link {
  color: white;
  margin: 5px 0;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-text {
  font-weight: bold;
}

@media (max-width: 768px) {
  .flex-container {
      flex-direction: column;
  }
  .stylish-sidebar {
      width: 100%;
      min-height: auto;
  }
}

.editable-input {
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 4px;
}

.editable-input:focus {
  border-color: #1976D2;
  box-shadow: 0 0 5px rgba(25, 118, 210, 0.5);
}

.fsize40-center {
  font-size:32px !important;
  text-align: center !important;
  padding-bottom:40px;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 10px;
  list-style: none;
}

.pagination button {
  border: none;
  background-color: #f0f0f0;
  color: #333;
  text-align: center;
  padding: 8px 16px;
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.pagination button:hover {
  background-color: #ddd;
}

.pagination button.active {
  background-color: #007BFF;
  color: white;
}

.pagination button:first-child,
.pagination button:last-child {
  font-weight: bold;
}

.datepicker-wrapper .mx-input {
  height: 38px;
}

.property_status_0 {
  background-color: #FF9900;
}

.property_status_1 {
  background-color: #00FF00;
}

.property_status_2 {
  background-color: #B7B7B7;
}

#top-wrap .btn-clm>div .w-40 .card6::before {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  margin: 0 auto 15px;
  background: url(../img/claim-icon1.svg) !important;
  background-size: 100%;
}
/* モーダル全体 */
.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

/* 背景の黒オーバーレイ */
.map-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* 内容ボックス */
.map-modal__content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.25s ease;
}

/* 閉じるボタン */
.map-modal__close {
  position: absolute;
  top: 6px;
  right: 12px;
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}
/* アニメーション */
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
