/* Chrome, Safari, Edge, Opera */
html, body {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a{
  text-decoration: none;
  color: #000;
}

a:hover{
  color: #000;
}

.card{
  position: unset;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@media (min-width: 1400px) {
  .container{
      max-width: 98%;
  }
}

.text-bg-primary{
  color: #fff !important;
  background-color: #007bff !important;
}
.font-primary{
  color: #2f3b7e;
}

/* page 색상 */
.page-link, .page-link:hover {
  color: #2f3b7e;
}
.page-item.active .page-link {
  background-color: #2f3b7e;
  border-color: #2f3b7e;
}
/* 아이콘에 애니메이션 적용 */
.rotating-icon {
  display: inline-block; /* 블록 요소로 설정 */
  animation: spin 1s linear infinite; /* 1초마다 360도 회전, 무한 반복 */
}

/* Firefox  */
input[type='number'] {
  -moz-appearance: textfield;
}


.btn-primary {
    background-color: #2f3b7e;
    border-color: #2f3b7e;
    color: white;
}
.btn-primary:hover{color:#fff;background-color:#3d4a9a ;border-color:#3d4a9a;}

.field-input{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    resize: none;
}


/* 메인 콘텐츠 */
.full-content{
  margin-left: 250px;
  transition: margin-left 0.3s;
}

.sidebar.collapsed ~ .full-content {
  margin-left: 80px;
}

.main-content {
  flex: 1;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 20px;
}


.main-content h2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  margin-left: 20px;
}


.plus{
  color:#0d6efd !important;
}
.minus{
  color:#ff0000 !important;
}