﻿/* 통계 숫자 색상 변경 */
#waitingCount {
    color: #ef4444;
    /* Red */
    font-weight: 700;
}

#contractCount {
    color: #2563eb;
    /* Blue */
    font-weight: 700;
}

#completeCount {
    color: #000000;
    /* Black */
    font-weight: 700;
}

/* 상태 드롭다운 버튼 색상 - 캡쳐 스타일 (Rounded, Border, Light Background) */
.status-select {
    font-weight: 600 !important;
    padding: 6px 30px 6px 14px !important;
    /* 충분한 우측 여백 확보 */
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 12px !important;
    /* 화살표 크기 적절히 확대 */
    width: auto !important;
    min-width: 105px !important;
}

.status-select:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

/* 상담대기 - 붉은색 */
.status-select.status-상담대기 {
    background-color: #fef2f2 !important;
    border: 1px solid #ef4444 !important;
    color: #ef4444 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
}

/* 상담완료 - 회색 */
.status-select.status-상담완료 {
    background-color: #f9fafb !important;
    border: 1px solid #6b7280 !important;
    color: #4b5563 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
}

/* 계약완료 - 옅은하늘색 (파란색 계열) */
.status-select.status-계약완료 {
    background-color: #eff6ff !important;
    border: 1px solid #93c5fd !important;
    color: #2563eb !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
}

/* 옵션 배경색 초기화 */
.status-select option {
    background-color: white !important;
    color: #374151 !important;
}