input[type="date"] {
    color-scheme: light; /* 防止跟随系统深色模式变暗色 */
}

    input[type="date"]::-webkit-calendar-picker-indicator {
        cursor: pointer;
        opacity: 0.45;
        transition: opacity 0.15s;
    }

        input[type="date"]::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }

.avatar-option:has(input:checked) {
    outline: 2px solid #f43f5e;
    outline-offset: 2px;
}