/* @import '~bootstrap/dist/css/bootstrap.css'; */

/* 共通 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* ヘッダー */
.navbar {
    background-color: #FD9BAA;
}
.navbar-nav .nav-link {
  display: block;
}

.navbar-brand,
.nav-link {
  color: white !important;
}
.btn-pink {
    color: #fff!important;
    background-color: #FD9BAA!important;
    border-color: #FD9BAA!important;
}

/* 一覧画面 ボタン */
/* .btn-margin-right {
  margin-right: 30px;
} */

/* 登録画面 写真 */
.photo-box {
  position: relative;
  width: 250px;
  height: 250px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.photo-box img,
.photo-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.photo-box span {
  color: #aaa;
  font-size: 20px;
}


/* .photo-preview {
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  background-position: center;
  background-size: cover;
} */

.photo-preview {
  width: 250px;
  height: 250px;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* ページネーション */
.pagination .page-item .page-link {
  color: #FD9BAA !important;
}

.pagination .page-item .page-link:focus,
.pagination .page-item .page-link:hover {
  color: #FD9BAA !important;
  background-color: rgba(253, 155, 170, 0.1) !important;
  border-color: rgba(253, 155, 170, 0.5) !important;
}

.pagination .page-item.active .page-link {
  color: #fff !important;
  background-color: #FD9BAA !important;
  border-color: #FD9BAA !important;
}

.pagination .page-item.disabled .page-link {
  color: rgba(253, 155, 170, 0.5) !important;
  pointer-events: none;
  background-color: transparent !important;
  border-color: rgba(253, 155, 170, 0.5) !important;
}

/* utilities */
.w-70px {
    width: 70px !important;
}
.w-150px {
    width: 150px !important;
}
