/* 4.inputs.css - Inputs, Selects & Form Elements */

/* --- [신규] 일반 입력 필드 (모달/회원가입용, 13px 고정) --- */
.input-std {
    width: 100%;
    height: 32px;               /* 표준 높이 */
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 13px !important; /* 요청사항: 13px */
    font-family: var(--font-main);
    color: #333;
    background-color: #ffffff !important;
    outline: none;
    transition: border-color 0.2s;
}

.input-std:focus {
    border-color: var(--accent-blue); /* #3498db */
}

/* 읽기 전용/비활성 상태 자동 스타일링 */
.input-std:read-only,
.input-std:disabled {
    /* [수정] #f5f5f5 -> #e0e0e0 (더 진한 회색)으로 변경하고 !important 추가 */
    background-color: #e0e0e0 !important; 
    
    color: #555; /* 글자색도 조금 더 진하게 하여 가독성 확보 */
    cursor: default;
    pointer-events: none; /* 클릭 방지 */
}

/* 헤더용 입력 필드 (높이 36px) */
.form-input-header {
    height: 36px; font-size: 13px; padding: 0 10px;
    border: 1px solid #ddd; border-radius: 4px;
    box-sizing: border-box; vertical-align: middle;
}
.form-input-header:focus {
    outline: none;
    border-color: var(--primary-color, #3498db);
}

/* 라벨 스타일 (필요 시 사용) */
.label-std {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
    color: #333;
}

/* 보기 설정 체크리스트 드롭다운 (메인 화면용) */
.dropdown-check-list { 
    position: relative; display: inline-block; 
}
.dropdown-check-list .anchor {
    position: relative; cursor: pointer; display: inline-flex; 
    align-items: center; background: #fff; border: 1px solid #ccc;
    padding: 5px 10px; font-size: 12px; border-radius: 4px;
}
.dropdown-check-list .anchor:after {
    content: ""; border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid #000; margin-left: 8px;
}
.dropdown-check-list ul.items {
    padding: 8px; display: none; margin: 0;
    border: 1px solid #ccc; border-top: none;
    position: absolute; top: 100%; right: 0; 
    background: #fff; width: 180px; z-index: 100;
    list-style: none; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
}
.dropdown-check-list.visible ul.items { display: block; }
.dropdown-check-list ul.items li { padding: 4px 0; font-size: 12px; color: #333; }

#startDate { border-radius: 0 4px 4px 0; }
#endDate { border-radius: 4px; } /* 예외적으로 전체 둥글게 */

.date-separator {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: none !important;
    border: none !important;
}


