/* 1. 최후의 수단: 화면 전체에서 파란색 계열을 강제로 흑백화 */
/* 이 코드는 시스템이 억지로 밀어넣는 모든 색상을 무채색으로 만듭니다. */
.column-back-button, 
.column-header__back-button,
.column-header__back-button i,
.column-header__back-button span,
.column-back-button i,
.column-back-button span {
    color: #ffffff !important;
    filter: grayscale(100%) !important; /* 색상 정보를 아예 제거 */
    -webkit-filter: grayscale(100%) !important;
}

/* 2. '돌아가기' 경로 정밀 타격 (whippyEdition 전용) */
div.column-header__back-button button,
div.column-header__back-button i,
header .column-back-button,
header .column-back-button span {
    color: #ffffff !important;
}

/* 3. 게시 버튼: 검정 배경 + 흰 테두리 (입체감/그라데이션 완전 삭제) */
.button.button-primary,
.compose-form .button.button-primary,
button.button[type="submit"] {
    background: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* 4. 오너(Owner) 태그 및 모든 뱃지 복구 */
.account-role,
.roles .custom-role,
.admin-badge {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

/* 5. 배경 화면: 우주 이미지 완벽 차단 */
html, body, .app-body, .ui, .wrapper, .columns-area, .column, .drawer, .scrollable {
    background: #000000 !important;
    background-image: none !important;
}

/* 6. 전역 강조색 시스템 무력화 */
:root {
    --color-accent: #ffffff !important;
    --color-primary: #ffffff !important;
    --brand-color: #ffffff !important;
    --text-link-color: #ffffff !important;
    --accent-color: #ffffff !important;
}

/* 7. 탭 메뉴 하단 활성화 선 (청록색 사살) */
.account__section-headline a.active::after,
.tabs-bar__link.active::after {
    background-color: #ffffff !important;
}

