.custom-tabs {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
}
    .trainer-slide-card
    {
        margin-right: 5px;
    }
    .uk-tab::before
    {
        left: 0;
    }
.custom-tabs li {
    padding: 0;
    flex: 1; /* 탭 항목을 균등하게 분배 */
    text-align: center; /* 텍스트를 가운데 정렬 */
}

.custom-tabs li a {
    display: block;
    padding: 7px 0px 5px 0px;
    color: #333;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s; /* 배경색과 글자색의 전환 효과 */
}

.custom-tabs li.uk-active a {
    color: #000; /* 활성화된 탭의 글자색 */
    border-bottom: 2px solid rgb(139, 179, 232); /* 활성화된 탭의 아래쪽 구분선 */
}

.uk-switcher {
    margin-top: 20px;
}


.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    padding: 15px 10px;
    height: 10px;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(100% + 10px);
    height: 4px;
    background-color: #ddd;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step.active::after {
    background-color: #8BB3E8; /* 코니멀 메인 색상 */
}

.progress-label {
    display: block;
    margin-top: 30px;
    font-size: 12px;
    font-weight: bold;
}

.behaviors, .allergies {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.uk-badge.allergy, .uk-badge.behavior {
    background-color: #f1948a;
    color: #fff;
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 0.8em;
}

.select2-selection__placeholder, .select2-results__option, .select2-selection__rendered {
    font-size: 13px !important;
}

input, textarea, .mce-content-body, .swal2-html-container {
    font-size: 12px !important;
}

.select2-dropdown {
    margin-left: 15px !important;
}

.uk-button {
    font-size: 13px !important;
}

.uk-open {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.uk-modal-dialog video {
    max-width: 100%;
}

.uk-close > svg {
    width: 20px !important;
    height: 20px !important;
}

.uk-text-muted {
    font-size: 90%;
}

.animal-card-list {
    overflow-x: auto;
}

.animal-card {
    position: relative;
    display: inline-block;
    width: 180px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s;
    flex: 0 0 auto;
    margin-right: 20px;
    z-index: 1;
}

.solution-card {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(50% - 20px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 10px;
    height: 50px;
}

.animal-card-content {
    display: flex;
    align-items: start;
    padding: 10px;
}

.profile-img {
    max-width: 70px;
    max-height: 70px;
    border-radius: 20%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
}

.animal-info {
    flex: 1;
}

.animal-card.selected .fa-check-circle,
.solution-card.selected .fa-check-circle {
    display: block;
}

.animal-card .fa-check-circle,
.solution-card .fa-check-circle {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgb(139, 179, 232);
    font-size: 1.5em;
}

.animal-card input[type="radio"],
.solution-card input[type="radio"] {
    display: none;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.animal-info strong,
.solution-info strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.animal-card-list,
.solution-card-list {
    scrollbar-width: none;
    white-space: nowrap;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    padding: 7px;
    z-index: 2;
    margin-bottom: 10px;
    font-size: 12px;
}

.uk-card-title {
    margin-bottom: 7px;
}

p {
    margin-bottom: 3px;
    margin-top: 3px;
}

.badge-status {
    font-size: 12px !important;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.filter-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 7px;
}

.custom-checkbox {
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    padding-left: 3px;
    font-size: 11px;
}

.checkbox-box {
    display: flex;
    align-items: center;
    padding: 7px !important;
    background-color: whitesmoke;
    border: 0px;
}

.filter-container::-webkit-scrollbar {
    display: none; /* 스크롤바 숨기기 (옵션) */
}

/* 아이콘과 텍스트 크기 조정 */
.checkbox-box i, .checkbox-box p {
    margin: 0;
    line-height: 1; /* 텍스트 라인 높이 조정 */
    font-size: 14px; /* 폰트 사이즈 조정 */
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box {
    background-color: rgb(139, 179, 232) !important;;
    color: white;
    border-color: #d6e1ef;
}


.div-thumb {
    height: 120px;
    width: 75px;
    background-position: center;
    background-size: cover;
    margin-right: 5px;
}

.uk-card-media-top {
    overflow: hidden;
}

.proposal-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    position: relative;
}

.proposal-title {
    font-weight: bold;
    font-size: 13px;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.proposal-price {
    font-size: 12px;
    color: #ff6b6b;
    float: right;
}

.proposal-card-row {
    font-size: 13px;
    color: #333;
}