/**
theme_t: 공통 태그 테마 선언요
**/
body.dark-mode a {
    color: white !important;
}

body.dark-mode h2,
body.dark-mode h3 {
    color: white !important;
}

/*border의 top 제외 전체 border 적용*/
body.dark-mode table td {
    border: 1px solid #dee2e6 !important;
    border-top: none !important;
    background-color: #2a2a2a;
}

body.dark-mode small {
    color: white !important;
}

body.light-mode small {
    color: black !important;
}

body.dark-mode tbody>tr:last-child>* {
    border-bottom: 1px solid white !important;
}

body.dark-mode thead {
    background-color: #444343 !important;
}

body.dark-mode thead:hover {
    background-color: #69696b !important;
}

body.dark-mode tfoot {
    background-color: #444343 !important;
}

body.dark-mode input[type="number"] {
    background-color: #444343 !important;
    color: white !important;
}

body.dark-mode input[type="checkbox"] {
    accent-color: #69696b;
    background-color: #555555;
    color: white !important;
}

body.dark-mode button {
    background-color: #444343 !important;
    color: white !important;
}

/*select 화살표 흰색으로 변경*/
body.dark-mode select {
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

body.light-mode select {
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/*라벨*/
body.dark-mode label {
    color: white;
}

/*검은색 보더 삭제*/
body.light-mode .table>:not(:first-child) {
    border-top: none;
}

body.dark-mode td:hover {
    background-color: #69696b !important;
}

body.dark-mode p {
    color: white !important;
}

body.dark-mode aside {
    background-color: #444343 !important;
}

body.dark-mode thead th {
    background-color: #444343 !important;
}

/*thead, tfoot에도 배경색 지정*/
body.dark-mode thead td,
body.dark-mode tfoot td {
    background-color: #444343 !important;
}

/*테이블 안 모든 요소를 공통으로 글자색 white로 */
/*.table은 부트스트랩 테이블용*/
body.dark-mode table,
body.dark-mode .table {
    color: white !important;
}

body.dark-mode .table tr:hover td {
    color: white !important;
}

body.light-mode #detailsModal,
body.light-mode #contractRegistrationInsertModal {
	 input {
   		 background-color: white !important;
	}
<<<<<<< HEAD
}

body.light-mode .progress {
    background-color: #f0f0f0 !important;
}

body.dark-mode .progress {
    background-color: #444343 !important;
}

body.light-mode .side-panel {
    background-color: #f8f9fa !important;
}

body.dark-mode .side-panel {
    background-color: #2a2a2a !important;
=======
>>>>>>> 93679f0ee333717f0d01c6545195e8ad35044089
}