/*# sourceMappingURL=custom.min.css.map */
.image-container {
    position: relative;
    width: 150px;
    margin-right: 15px;
    margin-bottom: 20px;
}

.image-container img {
    border-radius: 8px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.image-container .btn-delete-file {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 50%;
}

.viewport-width-25 {
    width: 25vh;
}

/* 모바일 스타일 */
@media (max-width: 768px) {
    .pagination {
        overflow-x: auto;
        white-space: nowrap;
    }

    .pagination .page-link {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* Select2 높이 커스텀 (기본 28px -> 38px 등) */
.select2-container .select2-selection--single {
    height: 38px !important; /* 원하시는 높이 설정 */
    display: flex;
    align-items: center; /* 텍스트 수직 중앙 정렬 */
    border: 1px solid #ced4da; /* 부트스트랩 스타일 예시 */
}

/* 화살표(Arrow) 영역 높이 및 위치 수정 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important; /* 전체 높이와 동일하게 맞춤 */
    top: 0 !important;
    right: 5px;
}

/* 렌더링된 텍스트 위치 미세 조정 */
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px; /* 좌측 여백 */
    line-height: normal; /* flex 정렬을 위해 normal로 초기화 */
}
