﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/* 👇 Carousel 인디케이터 (점 버튼) 스타일 수정 */
.carousel-indicators [data-bs-target] {
    background-color: #333; /* 일반 점 색: 어두운 회색 */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.7;
    border: none;
}

.carousel-indicators .active {
    background-color: #000; /* 활성 점 색: 검정색 */
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 검정 배경 */
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60% 60%;
    filter: invert(1); /* 아이콘 색 반전 */
}
