.hospital-item .hospital-delete-btn {
    display: none;
    padding: 0 6px;
    line-height: 1.1;
    font-weight: 700;
    border-radius: 50%;
}

.hospital-item:hover .hospital-delete-btn {
    display: inline-block;
}

.hospital-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

#sidebarNavList .hospital-item.active {
    background-color: #494e53 !important;
}

#sidebarNavList .hospital-item.active .nav-link {
    color: #fff !important;
    font-weight: bold;
}

.form-group label {
    font-weight: 600;
}

.file-select-label {
    cursor: pointer;
}

/* 로딩창 화면 전체 덮기 및 중앙 정렬 */
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* 알림창 위치 세부 조정 */
#successAlert {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    min-width: 350px;
}

/* 체크박스 간격, 크기 및 굵기 */
.form-check-input {
    /* width: 1.7rem !important;
    height: 1.7rem !important; */
    margin-top: 0.15em;
    margin-right: 2rem !important;
    transform: scale(1.5);
    transform-origin: left center;
}

.form-check-label {
    font-weight: 800 !important;
    font-size: 1rem;
    margin-left: 0;
    gap: 2rem;
}

.first-letter {
    margin-left: 0.4rem;
}

/* PC 화면에서만 중앙선과 여백이 생기도록 처리 */
@media (min-width: 768px) {
    .left-col-divider {
        border-right: 1px solid #e9ecef;
        padding-right: 2.5rem;
    }

    .right-col-padding {
        padding-left: 2.5rem;
    }
}
    /* 태그 입력 컨테이너 스타일 */
    .tag-container {
        display: flex;
        flex-wrap: wrap;
        padding: 0.375rem 0.5rem;
        align-items: center;
        background-color: #fff;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        cursor: text;
        min-height: 38px;
        gap: 5px;
    }
    .tag-container.border-danger { border-color: #dc3545; }
    .tag-input-field {
        border: none;
        outline: none;
        flex-grow: 1;
        min-width: 120px;
        background: transparent;
        padding: 0;
        margin: 0;
    }
    .tag-badge {
        font-size: 14px;
        padding: 5px 10px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .tag-badge i { cursor: pointer; opacity: 0.7; }
    .tag-badge i:hover { opacity: 1; }
